|
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 : 28-12-2009 20:53
|
|
|
Users' Comments  |
|
Average user rating
(0 vote)
|
|
Add your comment
|
file does not exist
By: ian (Guest) on 20-01-2010 02:32