Welcome Guest, Not a member yet? Register   Sign In
reply soon ..please plase .how to show doc file
#2

[eluser]Narkboy[/eluser]
Could you clarify exactly what you need help with?

If you've uploaded a file, any file, then you can link to it directly. If you've saved "resume.doc" to the "/resume/" folder, then the link would be "/resume/resume.doc".

If you've saved it ouside the web root then you need a little bit of header trickery to allow people to view or download it

In your controller try:
Code:
if (file_exists($file)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename=' . basename($file));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    ob_clean();
    flush();
    readfile($file);
    exit;
}

Set $file to be "/resume/resume.doc" (in this example) then this will check the file is there, and output it to the browser directly. If the browser has an associated viewer it will display in the browser (like a PDF for example), otherwise you'll get a download box.

Think that's what you need?

/B


Messages In This Thread
reply soon ..please plase .how to show doc file - by El Forum - 10-22-2010, 01:43 AM
reply soon ..please plase .how to show doc file - by El Forum - 10-22-2010, 01:54 AM
reply soon ..please plase .how to show doc file - by El Forum - 10-22-2010, 02:01 AM
reply soon ..please plase .how to show doc file - by El Forum - 10-22-2010, 02:08 AM
reply soon ..please plase .how to show doc file - by El Forum - 10-22-2010, 02:15 AM
reply soon ..please plase .how to show doc file - by El Forum - 10-22-2010, 02:30 AM
reply soon ..please plase .how to show doc file - by El Forum - 10-22-2010, 02:35 AM
reply soon ..please plase .how to show doc file - by El Forum - 10-22-2010, 02:41 AM
reply soon ..please plase .how to show doc file - by El Forum - 10-22-2010, 02:55 AM
reply soon ..please plase .how to show doc file - by El Forum - 10-22-2010, 05:49 AM



Theme © iAndrew 2016 - Forum software by © MyBB