The problem can be restrictions on your server, see php.ini:
You can use the FTP for the uploading of large files too.
The description popup box is a part of Joomla! framework and if user is logged in, then the design of this box is set by template CSS. If your template does not have this definition, please add the following code into your current Joomla! template's CSS file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
/* CSS Code - Overlib */ |
(This information was added into the forum, so it is not guaranteed)
Open the follwing file:
components/com_phocadownload/helpers/phocadownload.php
and edit the following lines (line cca 86)
FROM:
header("Cache-Control: public, must-revalidate");
header('Cache-Control: pre-check=0, post-check=0, max-age=0');
header("Pragma: no-cache");
header("Expires: 0");
header("Content-Description: File Transfer");
header("Expires: Sat, 30 Dec 1990 07:07:07 GMT");
header("Accept-Ranges: bytes");TO:
//header("Cache-Control: public, must-revalidate");
//header('Cache-Control: pre-check=0, post-check=0, max-age=0');
//header("Pragma: no-cache");
//header("Expires: 0");
//header("Content-Description: File Transfer");
//header("Expires: Sat, 30 Dec 1990 07:07:07 GMT");
//header("Accept-Ranges: bytes");and:
FROM:
// SSL Support
// header('Cache-Control: private, max-age=0, must-revalidate, no-store'); // comment above cache-control, pragma, expiresTO:
// SSL Support
header('Cache-Control: private, max-age=0, must-revalidate, no-store'); // comment above cache-control, pragma, expires
|
|