【问题标题】:Codeigniter: download file and redirectCodeigniter:下载文件并重定向
【发布时间】:2011-08-30 14:22:47
【问题描述】:

我在这个页面上有一个表格http://www.obsia.com/products/thassos_wonder_brochure/ 点击提交后,我希望它开始下载文件并重定向到感谢页面。但我只能下载文件或重定向或加载感谢下载页面。

这是检查表单并提交的功能:

function thassos_wonder_brochure()
{
    $this->load->helper('form');
    $this->load->helper('email');
    $this->load->library('email');
    $this->load->library('form_validation');

    //form validation
    $this->form_validation->set_rules('firstname', 'First Name', 'required|max_length[32]');
    $this->form_validation->set_rules('lastname', 'Last Name', 'required|max_length[32]');
    $this->form_validation->set_rules('companyemail', 'Company Email', 'required|max_length[100]|valid_email|unique');

    $this->load->model('brochure_model');
    if ($this->form_validation->run() == FALSE) 
    {
        // redisplay user form and repopulate fields
        $this->load->view('/tw/thassos_wonder_brochure_view');
    }   
    //display confirmation web page and send email
    else
    {   

        if($query = $this->brochure_model->addContact())
        {
            redirect('/thankyou/thassos_wonder_download');  (UPDATE)    
        }   
    }

}

以下是感谢页面上的代码,以重定向到下载页面结尾:(更新)

    <?php $this->load->view('header_view.php'); ?>
    <div class="prod">
    <?php $this->load->view('pmenu_view');?>

<div class="product_desc" id="tw_download">
    <h1>Thank you for Downloading</h1>
    <p>You have downloaded the brochure for ThassosWonder - for white stones specifically. You will also receive further information and link to the downloads in your email after you click on the confirmation link in your email.</p>
    <?php echo br(1); ?>
    <p>Feel free to write to us, if you are unable <?php echo anchor('contact', 'to get desired finish from your white marble or stones')?>. You can upload a picture to get a thorough analysis from our Research Director.</p>
    <br />

</div>
    </div>
    <?php $this->load->view('footer_view');?>  
<?php redirect('download/thassos_wonder_brochure'); ?>

这是我在下载页面上使用的代码。如何下载文件并将其重定向到感谢页面。

<?php 
$this->load->helper('download');
$name = 'ThassosWonder.pdf';
$data = file_get_contents("./downloads/brochures/Thassos_Wonder_Obsia.pdf"); // Read the file's contents - cannot use relative path. It will try to call the file from same directory (controller) as this file. In order for it get the contents from the root folder put a . in front of the relative path//
force_download($name, $data); 
 ?>

任何帮助将不胜感激。

【问题讨论】:

    标签: codeigniter redirect force-download


    【解决方案1】:

    反过来做 - 重定向到“谢谢”页面并立即重定向到“强制下载”页面。这将开始下载,但将用户留在“谢谢”页面上。

    更新: 尝试改变

    <?php redirect('download/thassos_wonder_brochure'); ?>
    

    <?php redirect('download/thassos_wonder_brochure', 'refresh'); ?>
    

    相反。

    【讨论】:

    • 这当然是自然的做法。
    • 如果我这样做if($query = $this-&gt;brochure_model-&gt;addContact()) { redirect('/thankyou/download'); redirect('/download/thassos_wonder_brochure'); } 然后它会加载感谢页面但不会下载。如果我在感谢页面的所有代码末尾添加重定向,它只会强制下载但不会将其重定向到感谢页面。
    • 您无法在同一页面中进行重定向。您必须重定向到“thankyou”页面并让该页面重定向到下载页面。
    • 我尝试重定向到“thankyou”页面,在我的“load footerview”代码之后,我将其重定向到下载页面,在这种情况下,它会跳过感谢页面并开始下载。我在这里做错了吗。
    • 您能否将您的问题代码更新为您目前的代码?
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2011-10-17
    • 2011-05-21
    • 2013-04-02
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多