Results 1 to 10 of 11

Hybrid View

  1. #1
    Join Date
    Apr 2015
    Location
    Royal Palm Beach, Florida, USA
    Posts
    20
    Plugin Contributions
    0

    Default Configuration does not work

    Hi,
    The cart seems to be working fine and has been since 2010. SSL was installed last month. But I noticed that I am unable to do any changes under configuration. All links when clicked bring up a 'page not found' and 'site is under construction". Once this appears nothing works, not even logoff.
    When I start all over again all the other parts of admin work fine.
    I have MySQL 5.5.32
    PHP 5.2.17
    Linus 3.14.27#1
    MacOS 10.10.2

  2. #2
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Configuration does not work

    Quote Originally Posted by Jukor View Post
    Hi,
    The cart seems to be working fine and has been since 2010. SSL was installed last month. But I noticed that I am unable to do any changes under configuration. All links when clicked bring up a 'page not found' and 'site is under construction". Once this appears nothing works, not even logoff.
    When I start all over again all the other parts of admin work fine.
    I have MySQL 5.5.32
    PHP 5.2.17
    Linus 3.14.27#1
    MacOS 10.10.2
    I suspect it's something with YOUR_ADMIN/includes/configure.php
    Check all your settings

    What version of ZenCart are you running?

  3. #3
    Join Date
    Apr 2015
    Location
    Royal Palm Beach, Florida, USA
    Posts
    20
    Plugin Contributions
    0

    Default Re: Configuration does not work

    zen 1.3.8

  4. #4
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Configuration does not work

    Quote Originally Posted by Jukor View Post
    Hi,
    The cart seems to be working fine and has been since 2010. SSL was installed last month. But I noticed that I am unable to do any changes under configuration. All links when clicked bring up a 'page not found' and 'site is under construction". Once this appears nothing works, not even logoff.
    When I start all over again all the other parts of admin work fine.
    I have MySQL 5.5.32
    PHP 5.2.17
    Linus 3.14.27#1
    MacOS 10.10.2
    This 'site is under construction' is not part of a standard ZC installation!

    I would suggest 2 things:

    1/ Read this: http://www.zen-cart.com/wiki/index.p...ing_From_Hacks

    2/ Upgrade to the latest version (1.5.4 at the time of writing this) ASAP! Your old 1.3.8 install wide open to malicious attacks

    Frank

  5. #5
    Join Date
    Apr 2015
    Location
    Royal Palm Beach, Florida, USA
    Posts
    20
    Plugin Contributions
    0

    Default Re: Configuration does not work

    I have found the problem in the configure. php, when you press the link under configuration you get a double cart. Following is e.g. email .
    It should be

    http://www.rj-usa.com/cart/admin/con...61&action=edit

    but it is:
    http://www.rj-usa.com/cart/cart/admi...61&action=edit

    I am unable to find anything wrong in the configure. php enclosed:

    <?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 "store" version of configure.php. ***********/
    /*************** The 2 files should be kept separate and not used to overwrite each other. ***********/

    // Define the webserver and path parameters
    // Main webserver: eg-http://www.your_domain.com -
    // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
    // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
    // HTTP_CATALOG_SERVER is your Main webserver: eg-http://www.your_domain.com
    // HTTPS_CATALOG_SERVER is your Secure webserver: eg-https://www.your_domain.com
    /*
    * URLs for your site will be built via:
    * HTTP_SERVER plus DIR_WS_ADMIN or
    * HTTPS_SERVER plus DIR_WS_HTTPS_ADMIN or
    * HTTP_SERVER plus DIR_WS_CATALOG or
    * HTTPS_SERVER plus DIR_WS_HTTPS_CATALOG
    * ...depending on your system configuration settings
    *
    * 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://www.rj-usa.com');
    define('HTTPS_SERVER', 'https://www.rj-usa.com');
    define('HTTP_CATALOG_SERVER', 'http://www.rj-usa.com');
    define('HTTPS_CATALOG_SERVER', 'https://www.rj-usa.com');

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

    // 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', '/cart/admin/');
    define('DIR_WS_CATALOG', '/cart/');
    define('DIR_WS_HTTPS_ADMIN', '/cart/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/cart/');

    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/users/web/ipg.rjusacom/cart/admin/');
    define('DIR_FS_CATALOG', '/home/users/web/b2369/ipg.rjusacom/cart/');

    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/');

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', 'zen_');
    define('DB_SERVER', 'rjusacom.ipagemysql.com');
    define('DB_SERVER_USERNAME', 'rxxxxxxxxxxxx’);
    define('DB_SERVER_PASSWORD', ‘xxxxxxxxxxxx’);
    define('DB_DATABASE', 'rjusacom_IC_20100517_153341');
    define('USE_PCONNECT', 'false');
    define('STORE_SESSIONS', 'db');
    // for STORE_SESSIONS, use 'db' for best support, or '' for file-based storage

    // The next 2 "defines" are for SQL cache support.
    // For SQL_CACHE_METHOD, you can select from: none, database, or file
    // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
    // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
    // ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
    define('SQL_CACHE_METHOD', 'none');
    define('DIR_FS_SQL_CACHE', '/home/users/web/b2369/ipg.rjusacom/cart/cache');

    // EOF

    Please help!

  6. #6
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,845
    Plugin Contributions
    25

    Default Re: Configuration does not work

    Quote Originally Posted by Jukor View Post
    I have found the problem in the configure. php, when you press the link under configuration you get a double cart. Following is e.g. email .
    It should be

    http://www.rj-usa.com/cart/admin/con...61&action=edit

    but it is:
    http://www.rj-usa.com/cart/cart/admi...61&action=edit

    I am unable to find anything wrong in the configure. php enclosed:

    <?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 "store" version of configure.php. ***********/
    /*************** The 2 files should be kept separate and not used to overwrite each other. ***********/

    // Define the webserver and path parameters
    // Main webserver: eg-http://www.your_domain.com -
    // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
    // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
    // HTTP_CATALOG_SERVER is your Main webserver: eg-http://www.your_domain.com
    // HTTPS_CATALOG_SERVER is your Secure webserver: eg-https://www.your_domain.com
    /*
    * URLs for your site will be built via:
    * HTTP_SERVER plus DIR_WS_ADMIN or
    * HTTPS_SERVER plus DIR_WS_HTTPS_ADMIN or
    * HTTP_SERVER plus DIR_WS_CATALOG or
    * HTTPS_SERVER plus DIR_WS_HTTPS_CATALOG
    * ...depending on your system configuration settings
    *
    * 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://www.rj-usa.com');
    define('HTTPS_SERVER', 'https://www.rj-usa.com');
    define('HTTP_CATALOG_SERVER', 'http://www.rj-usa.com');
    define('HTTPS_CATALOG_SERVER', 'https://www.rj-usa.com');

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

    // 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', '/cart/admin/');
    define('DIR_WS_CATALOG', '/cart/');
    define('DIR_WS_HTTPS_ADMIN', '/cart/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/cart/');

    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/users/web/ipg.rjusacom/cart/admin/');
    define('DIR_FS_CATALOG', '/home/users/web/b2369/ipg.rjusacom/cart/');

    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/');

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', 'zen_');
    define('DB_SERVER', 'rjusacom.ipagemysql.com');
    define('DB_SERVER_USERNAME', 'rxxxxxxxxxxxx’);
    define('DB_SERVER_PASSWORD', ‘xxxxxxxxxxxx’);
    define('DB_DATABASE', 'rjusacom_IC_20100517_153341');
    define('USE_PCONNECT', 'false');
    define('STORE_SESSIONS', 'db');
    // for STORE_SESSIONS, use 'db' for best support, or '' for file-based storage

    // The next 2 "defines" are for SQL cache support.
    // For SQL_CACHE_METHOD, you can select from: none, database, or file
    // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
    // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
    // ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
    define('SQL_CACHE_METHOD', 'none');
    define('DIR_FS_SQL_CACHE', '/home/users/web/b2369/ipg.rjusacom/cart/cache');

    // EOF

    Please help!

    Please rename your admin folder, because now the whole world knows the name of your admin.

  7. #7
    Join Date
    Apr 2015
    Location
    Royal Palm Beach, Florida, USA
    Posts
    20
    Plugin Contributions
    0

    Default Re: Configuration does not work

    I have discussed with experts and they say that there is nothing wrong with configure.php.
    Has anybody any idea where the problem of double cart could be.
    Thanks

  8. #8
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

    Default Re: Configuration does not work

    is this correct

    define('DIR_FS_ADMIN', '/home/users/web/ipg.rjusacom/cart/admin/');
    define('DIR_FS_CATALOG', '/home/users/web/b2369/ipg.rjusacom/cart/');

    web/ipg.rjusacom in the dir fs admin
    web/b2369/ipg.rjusacom in the dir fs catalog
    Webzings Design
    Semi retired from Web Design

  9. #9
    Join Date
    Apr 2015
    Location
    Royal Palm Beach, Florida, USA
    Posts
    20
    Plugin Contributions
    0

    Default Re: Configuration does not work

    The problem was solved with the great help from ipage representatives.

 

 

Similar Threads

  1. v139h mysite.configuration does not exist
    By khoweb in forum Installing on a Linux/Unix Server
    Replies: 6
    Last Post: 4 Apr 2012, 10:48 AM
  2. 1146 Table DB.configuration does not exist
    By pippa_oz in forum Upgrading from 1.3.x to 1.3.9
    Replies: 2
    Last Post: 1 Nov 2010, 07:50 AM
  3. Shipping tare weight/boxes configuration does not work for FedEx
    By fpbear in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 28 Jul 2008, 04:24 AM
  4. Send Email tool Does not work if Customer not subscribed.
    By woodlandsprite in forum General Questions
    Replies: 4
    Last Post: 15 Jul 2006, 05:57 AM

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