Results 1 to 7 of 7
  1. #1
    Join Date
    Aug 2006
    Posts
    40
    Plugin Contributions
    0

    Default physical path problem on install

    Hi...we are having trouble installing on a lycos account, in particular with the physical path section...

    the zen cart installer guesses at /data/members/paid/c/u/cutencreepy.co.uk/htdocs/www/zen
    but on our account which starts at cutencreepy.co.uk doesnt have a htdocs folder

    as far as i can tell the physical path should be /www/zen
    with zen being the name of the folder we installed zencart into
    but...it keeps telling us that the physical path is wrong unless we accept those defaults....problem is, when we go through the installation to the end and try and view the store we get this

    Warning: main(includes/auto_loaders/config.core.php): failed to open stream: No such file or directory in /data/members/paid/c/u/cutencreepy.co.uk/htdocs/www/zen/includes/application_top.php on line 83

    Warning: main(includes/auto_loaders/config.core.php): failed to open stream: No such file or directory in /data/members/paid/c/u/cutencreepy.co.uk/htdocs/www/zen/includes/application_top.php on line 83

    Warning: main(): Failed opening 'includes/auto_loaders/config.core.php' for inclusion (include_path='.:/data/apache/php/mmp_lib:/data/session') in /data/members/paid/c/u/cutencreepy.co.uk/htdocs/www/zen/includes/application_top.php on line 83

    Warning: reset(): Passed variable is not an array or object in /data/members/paid/c/u/cutencreepy.co.uk/htdocs/www/zen/includes/autoload_func.php on line 18

    Warning: ksort() expects parameter 1 to be array, null given in /data/members/paid/c/u/cutencreepy.co.uk/htdocs/www/zen/includes/autoload_func.php on line 19

    Warning: Invalid argument supplied for foreach() in /data/members/paid/c/u/cutencreepy.co.uk/htdocs/www/zen/includes/autoload_func.php on line 20

    Fatal error: Call to a member function on a non-object in /data/members/paid/c/u/cutencreepy.co.uk/htdocs/www/zen/includes/counter.php on line 23


    any ideas anyone?
    we can get into admin and start tweaking the store and adding products...

  2. #2
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: physical path problem on install

    please post your /includes/configure.php file here without the password
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #3
    Join Date
    Aug 2006
    Posts
    40
    Plugin Contributions
    0

    Default Re: physical path problem on install

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


    // 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://www.cutencreepy.co.uk');
    define('HTTPS_SERVER', 'https://vip-membersphp.webc.lyceu.net');

    // 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', '/zen/');
    define('DIR_WS_HTTPS_CATALOG', 'https:///');

    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', '/data/members/paid/c/u/cutencreepy.co.uk/htdocs/www/zen/');

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

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', '');
    define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', 'root');
    define('DB_SERVER_PASSWORD', 'xxxxxxx');
    define('DB_DATABASE', 'cutencreepy_co_uk_1');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // leave empty '' for default handler or set to 'db'

    // 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', '/data/members/paid/c/u/cutencreepy.co.uk/htdocs/www/zen/cache');

    ?>

  4. #4
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: physical path problem on install

    You need to at least change:
    define('DIR_WS_CATALOG', '/zen/');
    define('DIR_WS_HTTPS_CATALOG', 'https:///');
    To read:
    define('DIR_WS_CATALOG', '/zen/');
    define('DIR_WS_HTTPS_CATALOG', '/zen/');
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  5. #5
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: physical path problem on install

    Does this file exist? ... includes/auto_loaders/config.core.php



    I'm puzzled why you would use Lycos to run an advanced eCommerce system. Perhaps it may be suitable for initial setup and testing, but I wouldn't run a real store with them as a host.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  6. #6
    Join Date
    Aug 2006
    Posts
    40
    Plugin Contributions
    0

    Default Re: physical path problem on install

    thanks drbyte, it was missing files, that directory with the configure.core.php file in was empty...the lycos ftp is unreliable to say the least, i copied up three missing files and we now have a store...

    we were thinking about moving away from lycos, possibly to siteground or bluehost (bluehost seems to have the better reviews) is there a recommended host that you guys use a lot?

    thanks for the help

  7. #7
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: physical path problem on install

    Our Certified Hosting links (see link at top of page) come highly recommended.

    As for FTP, general rule of thumb ... never use a browser-based FTP resource.
    Use only a dedicated FTP program.
    A good free one is http://filezilla.sourceforge.net
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 

Similar Threads

  1. Install will not accept my Physical Path!
    By evanlydigital in forum Installing on a Windows Server
    Replies: 6
    Last Post: 30 Mar 2011, 09:04 PM
  2. New Install 1.3.9 Physical Path Incorrect
    By Agent4bid in forum Installing on a Linux/Unix Server
    Replies: 9
    Last Post: 18 Nov 2010, 06:33 PM
  3. Zencart Install> System Setup> Physical path is incorrect
    By dsydius in forum General Questions
    Replies: 2
    Last Post: 9 Aug 2010, 03:50 PM
  4. physical path problem on install
    By liamtee in forum Installing on a Linux/Unix Server
    Replies: 2
    Last Post: 3 Mar 2010, 04:59 PM
  5. new install, physical path is incorrect
    By engravee in forum Installing on a Linux/Unix Server
    Replies: 4
    Last Post: 10 Apr 2007, 03:19 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