|
4.3 - Troubleshooting for Apache + PHP |
Top Previous Next |
|
Please read the Installation section BEFORE reading this section.
Problem: When uploading the following error messages constantly shows up, but download is working perfectly.
ERROR: Cannot detect <speedcheck_success> or <speedcheck_failure>
Case 1: Some server administrators may have configured the Apache to deny file upload for security reasons, also it is possible that you were running PHP 4.2.x and/or you applied a workaround before. If you have applied the patch before, locate the .htaccess file in your web folder, look for:
<Limit POST> Order deny,allow Deny from all </Limit>
Delete these line, save the file. It is recommended to upgrade to latest version of PHP instead of using this workaround.
For details about this patch, read here: http://www.php.net/release_4_2_2.php
Case 2: Refers to Upload configuration section, please make sure you have restarted the server after making the following changes to the PHP.INI
file_uploads=On upload_tmp_dir = C:/WINNT/Temp upload_max_filesize=100M post_max_size=100M
Case 3: Make sure the upload size is smaller than your upload_max_filesize and post_max_size.
For other problems, please refer to FAQ
|