Typically adjusting teh syntax in the .htaccess file, and adding this block of code near the top of the directory file fixes the issues that arise from PHP/Apache upgrades ...
| Code: |
if ($_POST['submit_add']){$show="add";}
if (empty($PATH_INFO)){$PATH_INFO = $_SERVER['PATH_INFO'];}
if (empty($PATH_INFO)){$PATH_INFO = $_SERVER["ORIG_PATH_INFO"];}
if (empty($PATH_INFO)){$PATH_INFO = $HTTP_SERVER_VARS['PATH_INFO'];}
if (empty($PATH_INFO)){$PATH_INFO = $_SERVER["REQUEST_URI"];}
|
If you get server 500 error, try a different syntax in teh .htaccess file.
If the script runs, but still doesn't work correctly, please describe the problem in as much detail as possible... after checking the FAQ of course
