Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 22
  1. #11
    Join Date
    May 2008
    Posts
    25
    Plugin Contributions
    0

    Default Re: Home Page no go Home?

    Quote Originally Posted by Website Rob View Post
    Sounds like the Hoster does not setup a default Index page (handy for new accounts that do not have any Content yet) nor it would seem, is the Hoster concerned much about security. Showing what's inside a dir. is not good for security purposes and is easily prevented.

    As to Zen Cart, did you install it in a subdirectory? That could explain your current problem. More information on your setup would be helpful.
    Yes zen cart is in a subdirectory. I redirected my domain name to my zen cart store that is in a subdirectory.
    my domain is www.kimberliteassemblers.com

  2. #12
    Join Date
    Oct 2006
    Location
    Alberta, Canada
    Posts
    4,571
    Plugin Contributions
    1

    Default Re: Home Page no go Home?

    And due to the changes you now made, another problem bites the dust.

  3. #13
    Join Date
    May 2008
    Posts
    25
    Plugin Contributions
    0

    Default Re: Home Page no go Home?

    Quote Originally Posted by Website Rob View Post
    And due to the changes you now made, another problem bites the dust.
    No I still have same problem

  4. #14
    Join Date
    Oct 2006
    Location
    Alberta, Canada
    Posts
    4,571
    Plugin Contributions
    1

    Default Re: Home Page no go Home?

    Refresh you Browser page. I used different Browsers to go to http://www.kimberliteassemblers.com/ and they all showed your Zen Cart Index page.

  5. #15
    Join Date
    May 2008
    Posts
    25
    Plugin Contributions
    0

    Default Re: Home Page no go Home?

    Quote Originally Posted by Website Rob View Post
    Refresh you Browser page. I used different Browsers to go to http://www.kimberliteassemblers.com/ and they all showed your Zen Cart Index page.
    yes but from my zen cart home page the HOME links do not take me back to my store home.

  6. #16
    Join Date
    Oct 2006
    Location
    Alberta, Canada
    Posts
    4,571
    Plugin Contributions
    1

    Default Re: Home Page no go Home?

    That is because of this:
    http://www.kimberliteassemblers.com/commerce/a/b/

    Change your 'includes/configure.php' file to point to the correct URL.

    Or...

    Reinstall Zen Cart in you Document Root dir. - one level above where it is now.

  7. #17
    Join Date
    Nov 2007
    Location
    Burney, CA. USA
    Posts
    131
    Plugin Contributions
    4

    Default Re: Home Page no go Home?

    Quote Originally Posted by fuzzyevolution View Post
    No it goes to my store home page. I set my host server to my zen cart home page.
    My zen cart is also in sub directories. Peace
    After seeing the link to your site, my money is on the way you're forwarding your domain to the Zen Cart folder is the cause of the problem... as well as it appears you probably installed Zen Cart before the forwarding took place.

    If you told your host to forward: http://www.kimberliteassemblers.com/
    To: http://www.kimberliteassemblers.com/commerce/a/b/index.php

    Then the fix for your problem is with your host, so that index.php is a valid default file (so that when someone goes to: http://www.kimberliteassemblers.com/commerce/a/b/ it automatically loads http://www.kimberliteassemblers.com/commerce/a/b/index.php ) and after it is fixed, you should remove the /index.php from the forwarding address... But...

    If you only told your host to forward: http://www.kimberliteassemblers.com/
    To: http://www.kimberliteassemblers.com/commerce/a/b/

    Then this is the Fix:

    in .../includes/configure.php change Lines 25 & 26
    Code:
    define('DIR_WS_CATALOG', '/commerce/a/b/');
      define('DIR_WS_HTTPS_CATALOG', '/commerce/a/b/');
    To:
    Code:
    define('DIR_WS_CATALOG', '/');
      define('DIR_WS_HTTPS_CATALOG', '/');
    AND in: ../admin/includes/configure.php Lines 41, 42, 43 & 44
    From:
    Code:
     define('DIR_WS_ADMIN', '/commerce/a/b/admin/');
      define('DIR_WS_CATALOG', '/commerce/a/b/');
      define('DIR_WS_HTTPS_ADMIN', '/commerce/a/b/admin/');
      define('DIR_WS_HTTPS_CATALOG', '/commerce/a/b/');
    To:
    Code:
     define('DIR_WS_ADMIN', '/YOUR_ADMIN_FOLDER_NAME/');
      define('DIR_WS_CATALOG', '/');
      define('DIR_WS_HTTPS_ADMIN', '/YOUR_ADMIN_FOLDER_NAME/');
      define('DIR_WS_HTTPS_CATALOG', '/');
    I suggest that while doing this you also change the name of your "admin" folder to make your site more secure and change lines 41 & 43 to represent this change in: ../admin/includes/configure.php

    These are code samples are educated guesses as to what your configure files currently show right now based on the location the "home" link sends you.

    Hope this helps -- Best of Luck.

  8. #18
    Join Date
    Nov 2007
    Location
    Burney, CA. USA
    Posts
    131
    Plugin Contributions
    4

    Default Re: Home Page no go Home?

    Ooops... Looks like Website Rob posted before me.

    Quote Originally Posted by Website Rob View Post
    That is because of this:
    http://www.kimberliteassemblers.com/commerce/a/b/

    Change your 'includes/configure.php' file to point to the correct URL.

    Or...

    Reinstall Zen Cart in you Document Root dir. - one level above where it is now.

  9. #19
    Join Date
    May 2008
    Posts
    25
    Plugin Contributions
    0

    Default Re: Home Page no go Home?

    Quote Originally Posted by DWells View Post
    After seeing the link to your site, my money is on the way you're forwarding your domain to the Zen Cart folder is the cause of the problem... as well as it appears you probably installed Zen Cart before the forwarding took place.

    If you told your host to forward: http://www.kimberliteassemblers.com/
    To: http://www.kimberliteassemblers.com/.../a/b/index.php

    Then the fix for your problem is with your host, so that index.php is a valid default file (so that when someone goes to: http://www.kimberliteassemblers.com/commerce/a/b/ it automatically loads http://www.kimberliteassemblers.com/.../a/b/index.php ) and after it is fixed, you should remove the /index.php from the forwarding address... But...

    If you only told your host to forward: http://www.kimberliteassemblers.com/
    To: http://www.kimberliteassemblers.com/commerce/a/b/

    Then this is the Fix:

    in .../includes/configure.php change Lines 25 & 26
    Code:
    define('DIR_WS_CATALOG', '/commerce/a/b/');
      define('DIR_WS_HTTPS_CATALOG', '/commerce/a/b/');
    To:
    Code:
    define('DIR_WS_CATALOG', '/');
      define('DIR_WS_HTTPS_CATALOG', '/');
    AND in: ../admin/includes/configure.php Lines 41, 42, 43 & 44
    From:
    Code:
     define('DIR_WS_ADMIN', '/commerce/a/b/admin/');
      define('DIR_WS_CATALOG', '/commerce/a/b/');
      define('DIR_WS_HTTPS_ADMIN', '/commerce/a/b/admin/');
      define('DIR_WS_HTTPS_CATALOG', '/commerce/a/b/');
    To:
    Code:
     define('DIR_WS_ADMIN', '/YOUR_ADMIN_FOLDER_NAME/');
      define('DIR_WS_CATALOG', '/');
      define('DIR_WS_HTTPS_ADMIN', '/YOUR_ADMIN_FOLDER_NAME/');
      define('DIR_WS_HTTPS_CATALOG', '/');
    I suggest that while doing this you also change the name of your "admin" folder to make your site more secure and change lines 41 & 43 to represent this change in: ../admin/includes/configure.php

    These are code samples are educated guesses as to what your configure files currently show right now based on the location the "home" link sends you.

    Hope this helps -- Best of Luck.
    DWELLS I made the changes per your suggestion & the home links on the store index page now take me to the store index page BUT the whole page seems to be missing pics, fonts and all the links on the page take me to a 404 error maybe I need to edit the CSS idaknow any thoughts on this would help if it is going to be a pain then I will just install zen in my root folder. Could you give me a quick one liner on re-installing....???? Peace

  10. #20
    Join Date
    Nov 2007
    Location
    Burney, CA. USA
    Posts
    131
    Plugin Contributions
    4

    Default Re: HELP The home link will not goto home

    I think I checked out your site while you were making the changes... or shortly after you made the suggested changes (before changing them back).

    what I saw was it looks like you are forwarding to a file, instead of a directory... the reason I figure this is what is happening, is some of my surfing earlier had
    Code:
    http://www.kimberliteassemblers.com/index.phpindex.php?main_page=
    the "index.phpindex.php" is why you were getting 404 errors.

    and because your site is allowing people to see the file structure of your site I suggest asking your hosting company if they have (and if they don't will they) it fixed so when someone goes to a directory, it loads index.php if available.

    there is a setting in the hosting system (that you may have access to) that tells your server what to load and in what order... if index.php isn't listed Zen Cart will not load, and instead show the folder structure of the site.... most sites have it set up so it loads "index.html" then "index.php" and some hosts have an extra "default.*"

    Again, talk to your host -- because if what I think is happening is the cause, even if you move it to your root folder, you'll continue to have the same problem.

    If your host says it is set up to load "index.php" when someone types in a directory name... then you could try reinstalling Zen Cart to your root folder, or moving your current cart.

    I know you asked for a one liner for what you should do-- but I thought it needed a longer answer.

    Hope you manage to get your site working soon.

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. v139f Help changing where the HOME link directs
    By chrissiemags in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 7 Oct 2013, 04:48 AM
  2. Home link links to default home page
    By roekoe in forum Addon Language Packs
    Replies: 0
    Last Post: 9 May 2011, 12:44 PM
  3. FedEx Module will not show non-home rates.
    By gcntim in forum Addon Shipping Modules
    Replies: 0
    Last Post: 16 Jan 2010, 12:09 AM
  4. My Home Page is not the original home page- Help!
    By Pet Herbal Remedies in forum General Questions
    Replies: 4
    Last Post: 22 Aug 2008, 11:15 PM

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