
Originally Posted by
Athenon
At what stage is the $_POST found to be empty? anytime after the form is submitted...in other words, it never gets filled at all
On a side note, OSCommerce has the same problem.

Originally Posted by
DrByte
If Zen Cart is to blame, then I'd be expecting that $_POST would have data immediately after form submission but then lost it during some sort of sanitization. I can't say that I've ever seen that happen though.

Originally Posted by
Athenon
I know for a fact it's not all $_POST data. I tested it with a little home-made script, and $_POST data came through perfectly fine, just like I expected.
Let's do some debugging then.
You said this was related to the Admin "configuration" screen, so edit the /admin/configuration.php file
Around line 24 you'll see this:
Code:
require('includes/application_top.php');
put this on the line ABOVE that:
Code:
echo '<pre>' . print_r($_POST, true) . '</pre>';
Then attempt another edit and submit.
What do you see ? (besides a bunch of "Cannot send session headers -- headers already sent" messages and maybe a javascript error or two)