Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Join Date
    Dec 2008
    Posts
    8
    Plugin Contributions
    0

    Default config help (maybe)

    Hi all,

    I have a small problem with this site after moving the domain i altered the 2 configure.php files which got the style sheets working but for some reason i have lost all the images including the admin page ones

    http://www.thestockingstore.co.uk

    Can anyone give me a pointer

    Best regards
    Tradari (aka Darren)

  2. #2
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,247
    Plugin Contributions
    58

    Default Re: config help (maybe)

    <link rel="stylesheet" type="text/css" href="includes/templates/future/css/stylesheet.css" />


    Missing /shop/ , check you configs again

    ~Melanie
    PRO-Webs, Inc. since 2003 :: Zen Cart Hosting :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are not conducive to a helpful community.

  3. #3
    Join Date
    Dec 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: config help (maybe)

    ok i see the problem but looking through the configs im not sure where im missing it are you able to give a bit more of a clue

    still learning a lot of this

  4. #4
    Join Date
    Dec 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: config help (maybe)

    the help i have added some of the config file here

    // 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://thestockingstore.co.uk');
    define('HTTPS_SERVER', 'https://thestockingstore.co.uk');

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

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

  5. #5
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,247
    Plugin Contributions
    58

    Default Re: config help (maybe)

    Code:
      define('HTTP_CATALOG_SERVER', 'http://www.thestockingstore.co.uk/shop');
      define('HTTPS_CATALOG_SERVER', 'https://www.thestockingstore.co.uk/shop');
    Admin >> Includes
    Cheers,
    Melanie
    Last edited by mprough; 10 Dec 2008 at 09:57 PM. Reason: added path
    PRO-Webs, Inc. since 2003 :: Zen Cart Hosting :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are not conducive to a helpful community.

  6. #6
    Join Date
    Dec 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: config help (maybe)

    Ok edit'ed that and the whole layout drops off along with the images too ill leave it like that so you can see the effect for the mo

    Darren


    ok quick edit changed the /includes/ back to as it was and the format comes back.
    now gone into admin/includes and that config i have now changed

    but no images still,

    PS thanks for the help
    Last edited by tradari; 10 Dec 2008 at 10:05 PM.

  7. #7
    Join Date
    Dec 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: config help (maybe)

    not sure if this helps but heres the code i have changed

    * 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://thestockingstore.co.uk/shop');
    define('HTTPS_SERVER', 'https://thestockingstore.co.uk/shop');
    define('HTTP_CATALOG_SERVER', 'http://thestockingstore.co.uk');
    define('HTTPS_CATALOG_SERVER', 'https://thestockingstore.co.uk');

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

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

  8. #8
    Join Date
    Dec 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: config help (maybe)

    arr just found another problem by adding the /shop in the admin section after login goes to http://www.thestockingstore.co.uk/shop/shop/etc

  9. #9
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,247
    Plugin Contributions
    58

    Default Re: config help (maybe)

    Where is your Zen Cart physically?


    in /shop/
    or public_html/

    ~Melanie
    PRO-Webs, Inc. since 2003 :: Zen Cart Hosting :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are not conducive to a helpful community.

  10. #10
    Join Date
    Dec 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: config help (maybe)

    the zen cart is installed under public_html/shop/

    i suppose it might help to let you know what happened before hand.

    the site was working fine under a different domain. i changed the domain but kept the hosting. so the only things i have change is the domain name in the config files and changed the admin email addresses.

    also there is a redirect on all urls to http://www.thestockingstore.co.uk/shop/

    would this be easy just to move everything in the /shop/ folder to the public_html directory?? or would this cause other issues??

    hope this helps

    Darren
    Last edited by tradari; 10 Dec 2008 at 10:31 PM.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. encoding problems... maybe? help me!
    By eternity575 in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 5 Oct 2011, 06:03 PM
  2. Help SSL Killed my site or maybe i did
    By BUTTSTTUB in forum General Questions
    Replies: 3
    Last Post: 17 Feb 2010, 05:47 PM
  3. Help - I broke something! (maybe an easy fix?)
    By brightgirl in forum General Questions
    Replies: 7
    Last Post: 29 Feb 2008, 02:42 AM
  4. maybe you guys can help
    By g0d4lm1ty in forum General Questions
    Replies: 1
    Last Post: 8 Jan 2007, 01:46 AM
  5. I.E. Problem, help maybe?
    By ladysaat in forum General Questions
    Replies: 0
    Last Post: 2 Sep 2006, 04:16 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