C
Clark
Guest
by Plesk?
I am migrating my site to a new machine. All has worked just fine for 3 years and counting on my old machine. On the new box..... with Plesk..... everything is FUBAR.
New box is running PHP 4.3.10
Old box is running PHP 4.3.3
Examples:
Even the simplest things will not work without added steps anymore. $PHP_SELF can't be used as $PHP_SELF. It has to be grabbed from an array.
GET variables passed from a URL like forumid=105 above have to be grabbed from an array. That one is a security issue so I understand.
But now not even POST variables submitted by forms are going through. Where do you find those??
Example:
form method=post action=$PHP_SELF (gotten from an array)
input type=hidden name=updated value=1
will not even recognize that it was submitted and the value should be 1.
I am migrating my site to a new machine. All has worked just fine for 3 years and counting on my old machine. On the new box..... with Plesk..... everything is FUBAR.
New box is running PHP 4.3.10
Old box is running PHP 4.3.3
Examples:
Even the simplest things will not work without added steps anymore. $PHP_SELF can't be used as $PHP_SELF. It has to be grabbed from an array.
GET variables passed from a URL like forumid=105 above have to be grabbed from an array. That one is a security issue so I understand.
But now not even POST variables submitted by forms are going through. Where do you find those??
Example:
form method=post action=$PHP_SELF (gotten from an array)
input type=hidden name=updated value=1
will not even recognize that it was submitted and the value should be 1.