Your website folder name can not have "example.com". A "dot" is usually reserved for files so if you have a folder named this the download won't work. The best solution is to store your downloads in a folder outside of your webroot. Joomla install /home/user/public_html/joomla Where your folder should be /home/user/downloads If you are getting a file does not exist error perform the following steps: 1. Open components/com_maian15/classes/class_cart.inc.php and search for the function forcedownload in this function locate the following code:
if (!file_exists($archiveName)) { echo $msg; exit; }
Change it to
if (!file_exists($archiveName)) { echo $archiveName; exit; }
Now instead of getting the File Does Not Exist!! error you will see how your downloads are being generated.
Last update : 05-04-2010 22:49
|
|
|
Users' Comments  |
|
Average user rating
(0 vote)
|
|
Add your comment
|
Downloading Fail
By: Mike (Guest) on 05-06-2010 17:44