mikecan Posted February 24, 2007 Posted February 24, 2007 I get the following error msg trying to check-out Warning: shipping(includes/languages/english/modules/shipping/canadapost.php): failed to open stream: No such file or directory in /home/gourmeta/public_html/includes/classes/shipping.php on line 51 Warning: shipping(): Failed opening 'includes/languages/english/modules/shipping/canadapost.php' for inclusion (include_path='.:/usr/lib/php') in /home/gourmeta/public_html/includes/classes/shipping.php on line 51 In admin- module-shpg I get this msg??? Warning: main(/home/gourmeta/public_html/includes/languages/english/modules/shipping/canadapost.php): failed to open stream: No such file or directory in /home/gourmeta/public_html/admin/modules.php on line 139 Warning: main(): Failed opening '/home/gourmeta/public_html/includes/languages/english/modules/shipping/canadapost.php' for inclusion (include_path='.:/usr/lib/php') in /home/gourmeta/public_html/admin/modules.php on line 139 any help or insight is greatly appreciated. also how do I remove bestway shpg? thanks mike Quote
mikecan Posted February 24, 2007 Author Posted February 24, 2007 I get the following error msg trying to check-out Warning: shipping(includes/languages/english/modules/shipping/canadapost.php): failed to open stream: No such file or directory in /home/gourmeta/public_html/includes/classes/shipping.php on line 51 Warning: shipping(): Failed opening 'includes/languages/english/modules/shipping/canadapost.php' for inclusion (include_path='.:/usr/lib/php') in /home/gourmeta/public_html/includes/classes/shipping.php on line 51 In admin- module-shpg I get this msg??? Warning: main(/home/gourmeta/public_html/includes/languages/english/modules/shipping/canadapost.php): failed to open stream: No such file or directory in /home/gourmeta/public_html/admin/modules.php on line 139 Warning: main(): Failed opening '/home/gourmeta/public_html/includes/languages/english/modules/shipping/canadapost.php' for inclusion (include_path='.:/usr/lib/php') in /home/gourmeta/public_html/admin/modules.php on line 139 any help or insight is greatly appreciated. also how do I remove bestway shpg? thanks mike I have found and posted the 2 lines in question; please have a look and advise or point in the right direction; thanks mike $installed_modules = array(); for ($i=0, $n=sizeof($directory_array); $i<$n; $i++) { $file = $directory_array[$i]; line 139 include(DIR_FS_CATALOG_LANGUAGES . $language . '/modules/' . $module_type . '/' . $file); include($module_directory . $file); $class = substr($file, 0, strrpos($file, '.')); if (tep_class_exists($class)) { $module = new $class; if ($module->check() > 0) { if ($module->sort_order > 0) { $installed_modules[$module->sort_order] = $file; } else { $installed_modules[] = $file; for ($i=0, $n=sizeof($include_modules); $i<$n; $i++) { line 51 include(DIR_WS_LANGUAGES . $language . '/modules/shipping/' . $include_modules[$i]['file']); include(DIR_WS_MODULES . 'shipping/' . $include_modules[$i]['file']); $GLOBALS[$include_modules[$i]['class']] = new $include_modules[$i]['class']; Quote
mikecan Posted March 1, 2007 Author Posted March 1, 2007 I have found and posted the 2 lines in question; please have a look and advise or point in the right direction; thanks mike $installed_modules = array(); for ($i=0, $n=sizeof($directory_array); $i<$n; $i++) { $file = $directory_array[$i]; line 139 include(DIR_FS_CATALOG_LANGUAGES . $language . '/modules/' . $module_type . '/' . $file); include($module_directory . $file); $class = substr($file, 0, strrpos($file, '.')); if (tep_class_exists($class)) { $module = new $class; if ($module->check() > 0) { if ($module->sort_order > 0) { $installed_modules[$module->sort_order] = $file; } else { $installed_modules[] = $file; for ($i=0, $n=sizeof($include_modules); $i<$n; $i++) { line 51 include(DIR_WS_LANGUAGES . $language . '/modules/shipping/' . $include_modules[$i]['file']); include(DIR_WS_MODULES . 'shipping/' . $include_modules[$i]['file']); $GLOBALS[$include_modules[$i]['class']] = new $include_modules[$i]['class']; Any pointers would be appreciated, thanks Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.