Results 1 to 10 of 10
  1. #1
    Join Date
    Aug 2007
    Posts
    91
    Plugin Contributions
    0

    red flag Help! FATAL ERROR

    I really need help. I tried to turn on secure (https) in the Configure.php files yesterday, but I got the error that Zencart needed to be configured. I tried to put the configure.php file back to it's original state and re-load; however, the error didn't go away and now I'm getting this fatal error when I try to go to my admin panel:

    Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79

    I looked at the autoload_func.php file, but couldn't see anything about "notifier" on line 79.

    Any one ever run into this? Any ideas what I can do? I really need to get this site back up.

    Thanks!
    Cindy

  2. #2
    Join Date
    Aug 2007
    Posts
    91
    Plugin Contributions
    0

    Default Re: Help! FATAL ERROR

    Here is my full error log:

    Wed Sep 17 15:25:02 2008] [error] [client 76.65.183.56] Failed loading /usr/local/Zend/lib/Optimizer/php-5.2.x/ZendOptimizer.so:
    /usr/local/Zend/lib/Optimizer/php-5.2.x/ZendOptimizer.so: undefined symbol: compiler_globals, referer:
    http://forums.soldatrs.com/index.php...n=chess;id=223
    [Wed Sep 17 15:25:02 2008] [error] [client 66.249.70.235]
    Failed loading /usr/local/Zend/lib/Optimizer/php-5.2.x/ZendOptimizer.so: /usr/local/Zend/lib/Optimizer/php-5.2.x/ZendOptimizer.so:
    undefined symbol: compiler_globals
    [Wed Sep 17 15:25:03 2008] [warn] RewriteCond: NoCase option for non-regex pattern '-f' is not supported and will be ignored.
    [Wed Sep 17 15:25:03 2008] [warn] RewriteCond: NoCase option for non-regex pattern '-d' is not supported and will be ignored.


    --------------------------------------------------------------------------------
    SUEXEC error_log:
    --------------------------------------------------------------------------------



    --------------------------------------------------------------------------------
    PHP error_log:
    --------------------------------------------------------------------------------

    /home/twistjew/public_html/shoppingcart/admin/error_log:
    [16-Sep-2008 20:41:11] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79
    [17-Sep-2008 04:48:41] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79
    [17-Sep-2008 04:55:00] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79
    [17-Sep-2008 04:55:04] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79
    [17-Sep-2008 05:03:09] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79
    [17-Sep-2008 05:27:30] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79
    [17-Sep-2008 05:29:14] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79
    [17-Sep-2008 14:41:27] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79
    [17-Sep-2008 14:54:15] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79
    [17-Sep-2008 15:04:45] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79
    [17-Sep-2008 15:09:48] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79
    [17-Sep-2008 15:09:50] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79
    [17-Sep-2008 15:14:56] PHP Fatal error: Class 'notifier' not found in /home/twistjew/public_html/shoppingcart/includes/autoload_func.php on line 79

  3. #3
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,133
    Plugin Contributions
    11

    Default Re: Help! FATAL ERROR

    Make sure you have the ending slashes ( / ) in the config files. Especially around any ****FS_CATALOG definitions.

  4. #4
    Join Date
    Aug 2007
    Posts
    91
    Plugin Contributions
    0

    Default Re: Help! FATAL ERROR

    Yes, they are there. Below is my configure.php code (minus the database info)

    <?php
    /**
    * @package Configuration Settings circa 1.3.8
    * @copyright Copyright 2003-2007 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    */


    /*************** NOTE: This file is similar, but DIFFERENT from the "admin" version of configure.php. ***********/
    /*************** The 2 files should be kept separate and not used to overwrite each other. ***********/

    // Define the webserver and path parameters
    // HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
    // HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
    define('HTTP_SERVER', 'http://twistjewelrydesign.com');
    define('HTTPS_SERVER', 'https://twistjewelrydesign.com');

    // Use secure webserver for checkout procedure?
    define('ENABLE_SSL', 'false');

    // NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
    // * DIR_WS_* = Webserver directories (virtual/URL)
    // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
    define('DIR_WS_CATALOG', '/shoppingcart/');
    define('DIR_WS_HTTPS_CATALOG', '/shoppingcart/');

    define('DIR_WS_IMAGES', 'images/');
    define('DIR_WS_INCLUDES', 'includes/');
    define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
    define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
    define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
    define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
    define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
    define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');

    define('DIR_WS_PHPBB', '/');

    // * DIR_FS_* = Filesystem directories (local/physical)
    //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    define('DIR_FS_CATALOG', '/home/twistjew/public_html/shoppingcart/');

    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
    define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
    define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
    define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
    define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');

  5. #5
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,133
    Plugin Contributions
    11

    Default Re: Help! FATAL ERROR

    that's not the admin.

    take a look at admin/includes/configure.php

  6. #6
    Join Date
    Aug 2007
    Posts
    91
    Plugin Contributions
    0

    Default Re: Help! FATAL ERROR

    Admin has the '/' too.

    Here is the code:

    *
    * If you desire your *entire* admin to be SSL-protected, make sure you use a "https:" URL for all 4 of the following:
    */
    define('HTTP_SERVER', 'http://twistjewelrydesign.com');
    define('HTTPS_SERVER', 'https://twistjewelrydesign.com');
    define('HTTP_CATALOG_SERVER', 'http://twistjewelrydesign.com');
    define('HTTPS_CATALOG_SERVER', 'https://twistjewelrydesign.com');

    // Use secure webserver for catalog module and/or admin areas?
    define('ENABLE_SSL_CATALOG', 'false');
    define('ENABLE_SSL_ADMIN', 'false');

    // NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
    // * DIR_WS_* = Webserver directories (virtual/URL)
    // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
    define('DIR_WS_ADMIN', '/shoppingcart/admin/');
    define('DIR_WS_CATALOG', '/shoppingcart/');
    define('DIR_WS_HTTPS_ADMIN', '/shoppingcart/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/shoppingcart/');

    define('DIR_WS_IMAGES', 'images/');
    define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
    define('DIR_WS_CATALOG_IMAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'images/');
    define('DIR_WS_CATALOG_TEMPLATE', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/templates/');
    define('DIR_WS_INCLUDES', 'includes/');
    define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
    define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
    define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
    define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
    define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
    define('DIR_WS_CATALOG_LANGUAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/languages/');

    // * DIR_FS_* = Filesystem directories (local/physical)
    //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    define('DIR_FS_ADMIN', '/home/twistjew/public_html/shoppingcart/admin/');
    define('DIR_FS_CATALOG', '/home/twistjew/public_html/shoppingcart/');

    define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
    define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
    define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
    define('DIR_FS_CATALOG_TEMPLATES', DIR_FS_CATALOG . 'includes/templates/');
    define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
    define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

  7. #7
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,133
    Plugin Contributions
    11

    Default Re: Help! FATAL ERROR

    if I go to twistjewelry.com/admin, I get 404
    if I go to twistjewelry.com/shoppingcart (as you have in your configs), I get the "thank you for loading" window.

    Which is your real path?

  8. #8
    Join Date
    Aug 2007
    Posts
    91
    Plugin Contributions
    0

  9. #9
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,133
    Plugin Contributions
    11

    Default Re: Help! FATAL ERROR

    In that case, the store is not installed. Read what it says at http://www.twistjewelrydesign.com/shoppingcart

    I do find a store at http://www.twistjewelrydesign.com

    'Snot Zen

  10. #10
    Join Date
    Aug 2007
    Posts
    91
    Plugin Contributions
    0

    Default Re: Help! FATAL ERROR

    Well, I'm not sure what happened, but the store was definitely installed at that location. I added 280 products and it was all fine until I tried to update the configure file.

    I've just copied the site database in MyPHP and loaded to a fresh install. I needed to make some adjustment, but it was better than reloading 280 products.

    I think I'm o.k. now and in the process of backing up the site before trying to update the configure.php again. Ugh!

    Thanks for your help.

    Cindy

 

 

Similar Threads

  1. Fatal Error.... Help!
    By stevi556 in forum General Questions
    Replies: 6
    Last Post: 14 May 2012, 11:32 PM
  2. Fatal Error! Help
    By popss in forum General Questions
    Replies: 3
    Last Post: 6 Jun 2008, 08:33 PM
  3. Fatal error. Help!
    By high2K in forum General Questions
    Replies: 2
    Last Post: 24 Sep 2006, 03:27 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR