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.
/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: usereadfileit's a bit better thanfopen/fread(and there's less code required). – vstm Dec 30 '11 at 9:07/usr/local/apache/logs/suphp_loglog, which might indicate problems when executing php. I guess if the .htaccess is faulty there would be a message in theerror_log, so I'm not that convinced that the .htaccess is the problem. – vstm Dec 30 '11 at 12:09