This my first time with this commerce module and I'd really like to get it up and running. After installing first, it would not run.
I got an error message:
FATAL ERROR: register_globals is disabled in php.ini, please enable it!
I'm running off remote server so I can not get to the php.ini. So I need to get it working with the global register off.
So I tried this in the apllication_top.php ( folder /shop/incudes/ ...deleting
// check if register_globals is enabled.// since this is a temporary measure this message is hardcoded.The requirement will be removed before 2.2 is finalized. if (function_exists('ini_get')) { ini_get('register_globals') or exit('FATAL ERROR: register_globals is disabled in php.ini, please enable it!'); }
and inserting this
if (!empty($HTTP_GET_VARS)) {extract($HTTP_GET_VARS);}if (!empty($HTTP_POST_VARS)) {extract($HTTP_POST_VARS);}if (!empty($HTTP_SERVER_VARS)) {extract($HTTP_SERVER_VARS);}
However now when I run it I get this error message:
Fatal error: Failed opening required 'includes/application.php' (include_path='.:/usr/local/lib/php') in /tier-2/pnpstore2/46/webs/htdocs/catalog/install/index.php on line 13





LinkBack URL
About LinkBacks








Bookmarks