Try this for a generic fix if it is the globals issue:

Place this somewhere to set to TRUE or FALSE when needed

$GLOBAL_FIX = TRUE;

use an include on every script:

if($GLOBAL_VARS_FIX) {
   if( phpversion() >= '4.2.0' ) {
      extract($_POST);
      extract($_GET);
      extract($_SERVER);
      extract($_ENV);
      extract($_COOKIE);
   }
}

---
Alvaro Zuniga
Information Technology Professional
(337) 654 6515
www.zunitek.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to