Hi
this one is getting interesting....
the problem seems to be that the model number isn't being sent back to the admin/paps.php page when you click 'select'. the '?action=get_paps' part of the URL is fine, however.
so now I need a bit more information.
- Your PHP version
- Your MySQL version
- Your oscMax version
- in php.ini, is 'register_globals' switched on or off?
P.S. when you changed 'register_long_arrays' in your php.ini file (see previous post), did you restart your server? perhaps you did, but if not, you will have to do this for the change to take effect.
Also, if you fancy doing some investigative work, add the following code to the bottom of your catalog/admin/application_top.php file just before the final '?>'
| Code: |
function px(&$arr, $arr_name)
{
if (sizeof($arr))
{
print "---------- <br />";
print $arr_name . "<br />";
}
foreach($arr as $key => $v)
{
print " ".$key." -> '".$v."'<br />";
}
}
px($_GET, "GET"«»);
px($_POST, "POST"«»);
|
Now go to the PAPS admin page and select a product as usual from a dropdown menu. Then send me the output you see at the top of the page after the request is executed. You can then comment out/delete the code you put into catalog/admin/application_top.php.
Thanks.
Nick