ok so, we have a server running Cpanel, and we have set up one account/domain as the central repository for downloadable media. We have put the media directory above the public_html directory (into the main directory for that account - containing public_html,www etc - call that the "USER" directory). Call the main site "Site A".

We have put the media directory above the public_html because we don't want users accessing the media directly. We want to serve them through various scripts.

Also in the central repository, we have a bunch of scripts we use across our sites.

So then we have Site B, and Site C. These are different cpanel accounts, and each have their own USER directory, public_html etc, you get the idea hopefully.

These sites access scripts held in the central directory without any problems at all.

So now on Site B, we have a script that should force-download the media from the central directory on Site A. The script can see the file exists (with file_exists etc).

But the force-download part is not working. Here is the script:

$ctype="application/force-download";
header("Pragma: public"); // required
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false); // required for certain browsers 
header("Content-Type: $ctype");
header("Content-Disposition: attachment; filename=\"".$title."\";" );
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($filename)+32);

$handle = fopen($filename, "r");

while ( $contents = fread( $handle, 1024 ) )
{

    $filesize = $filesize - 1024;
    print ($contents);
    flush();

}

fclose($handle); 
exit();

The value in $filename is: ../../siteA/central/repository/test.pdf (where central is at the same level as public_html). This is being accessed from the public directory on Site B - so .. to the USER directory on Site B, .. into the directory containing all the cpanel account directories, then up into Site A.

This works fine on my local configuration of WAMP.

To be honest, although we have the whole server to ourselves and own all the cpanel accounts on it, I was still quite surprised that the owner of Site B could use a relative path and access scripts and stuff on account Site A. Seems a bit insecure, maybe the server is not configured correctly?

So anyway, the script on Site B can see that the media file exists. The media file has full read permissions. Site B can already access and run scripts in the same directory as the media file. However, when I execute, I get a 500 error...

"The server encountered an internal error or misconfiguration and was unable to complete your request."

Does anybody have any ideas? If it a configuration thing, I can get the host company do to stuff (not sure what exactly). But maybe it is a path issue or something. I had a similar issue this morning with images, and I had to put those images on the public directory of Site A so that Site B could display them. However, the media files cannot be on the public directory, and plus - if I am not mistaken, because the script is using fread, print etc, this should serve ok? Well it worked locally like I say.

If anyone could point me in the right direction with this it would be really great.

Many thanks.

link|improve this question

44% accept rate
Well you could check out the apache error-log to find out what's the problem (in cPanel it's in /usr/local/apache/logs/error_log). Most of the times it's a wrong .htaccess-directive (or some typo). Also there should be no write-permissions on files and folders for group and global (so it's best to use 755 for directories and 644 for files). Another tip: use readfile it's a bit better than fopen/fread (and there's less code required). – vstm Dec 30 '11 at 9:07
@vstm thanks for getting back to me. Ok I have deleted the htaccess files completely, that didn't change anything, still get the same error. I looked in the error log, the only error that seems to relate to this is: File does not exist: /home/dimgago/public_html/500.shtml - so the logs were not particularly enlightening :( Would deleting the htaccess files do the trick? Or would I need to configure them somehow? Thanks again for your help. – Edward Williams Dec 30 '11 at 11:24
@vstm - ok I did what you suggested and tried readfile. I did a quick test script and that worked ok. Turned out in the end it did not like the extra +32 on the end of the file size? Well anyway, it is working great now, thanks for your help and have a good weekend. – Edward Williams Dec 30 '11 at 12:05
Have you checked the file/folter permissions? There's also the /usr/local/apache/logs/suphp_log log, which might indicate problems when executing php. I guess if the .htaccess is faulty there would be a message in the error_log, so I'm not that convinced that the .htaccess is the problem. – vstm Dec 30 '11 at 12:09
Oh great ;), sorry I haven't seen your second comment before. You can add an official answer and accept it (this is perfectly fine with SO's rules). Have a nice weekend too! – vstm Dec 30 '11 at 12:11
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.