1. I set up maximum upload site to '0' (no limits) but I still cannot upload large files via Phoca Download Upload Manager?

The problem can be restrictions on your server, see php.ini:

  • upload_max_filesize
  • post_max_size, ...

You can use the FTP for the uploading of large files too.

 

2. If I am logged in (or some registered user) then the description popup box (mouse over the details button) is transparent?

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.

/* CSS Code - Overlib */
.ol-foreground {
	background-color: #f0f0f0;
}
.ol-background {
	background-color: #d6d6d6;
}
.ol-textfont {}
.ol-captionfont {
	color: #ffffff;
	font-weight: bold;
}
.ol-captionfont a {}

.ol-closefont {}

3. Download is not working in IE browsers when SSL is enabled?

(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, expires

TO:

// SSL Support
header('Cache-Control: private, max-age=0, must-revalidate, no-store'); // comment above cache-control, pragma, expires