Results 1 to 10 of 10
  1. #1
    Join Date
    Apr 2006
    Location
    Columbus, OH
    Posts
    99
    Plugin Contributions
    0

    Default index page not displaying after install

    I just installed Zen Cart on a new site I'm working on and, for some reason, the "Thank you for installing zen cart" message is appearing in place of the home page. I followed the install step-by-step (at least I think I did), and I can also log into the admin section and add products. Does anyone know if I missed something or did something wrong, or could this be an issue with the host (Network Solutions)? Here's the URL to see what's appearing:

    http://ellerue.com/

  2. #2
    Join Date
    Apr 2006
    Location
    Columbus, OH
    Posts
    99
    Plugin Contributions
    0

    Default Re: index page not displaying after install

    I may have tracked down the problem. It doesn't seem the site has a SSL certificate set up. Can I omit that info in the configure.php and get it to work properly? If not, how do I modify the configure.php file?

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

    Default Re: index page not displaying after install

    Network Solutions does weird non-standard, unconventional things with their SSL on their servers, making it impossible to run Zen Cart in SSL mode using their hosting service.

    In your configure.php files there are ENABLE_SSL switches available. Set them to 'false' in order to turn off all SSL support in Zen Cart.

    Or better yet, find a host that *does* support SSL.
    .

    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.

  4. #4
    Join Date
    Apr 2006
    Location
    Columbus, OH
    Posts
    99
    Plugin Contributions
    0

    Default Re: index page not displaying after install

    did that and still getting the same "Hello. Thank you for loading Zen Cart™." message. I double-checked all the path names in the two configure.php files, and they seem correct. Anything else anyone can think of? If I reinstalled zen-cart, that shouldn't affect the mySQL database with the product info, should it?

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

    Default Re: index page not displaying after install

    Quote Originally Posted by whiteboxer View Post
    If I reinstalled zen-cart, that shouldn't affect the mySQL database with the product info, should it?
    Well, if you make a backup, you can always go back to it, right?

    And, yes, if during the re-install you click the "Install" button instead of "Database Upgrade" button, yes, it will wipe your current database. That's why you need a backup if you choose that method.
    .

    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
    Jan 2004
    Posts
    66,380
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: index page not displaying after install

    In various places in your configure.php files you are using './../' instead of a proper path.

    ie:
    Code:
      define('DIR_FS_CATALOG', './../');
    (as well as other lines elsewhere in the files)

    It would be more appropriate to provide the actual filesystem path to your Zen Cart folder.
    It seems that setting is causing Zen Cart to not be able to find its own files, and thus it believes it's necessary to do an install ... hence the symptoms you describe.
    .

    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.

  7. #7
    Join Date
    Apr 2006
    Location
    Columbus, OH
    Posts
    99
    Plugin Contributions
    0

    Default Re: index page not displaying after install

    According to Network Solutions, the files are in a subfolder named htdocs. I changed the code in admin/includes/configure.php to this:

    define('DIR_FS_CATALOG', '/htdocs/');
    define('DIR_FS_ADMIN', '/htdocs/admin/');
    define('DIR_FS_SQL_CACHE', '/htdocs/cache');

    and in includes/configure.php to:

    define('DIR_FS_CATALOG', '/htdocs/');
    define('DIR_FS_SQL_CACHE', '/htdocs/cache');

    but still getting the same problem. I figure its one of four problems:
    1. didn't code the path name above properly
    2. missed a line where I still need to change it
    3. physical path name is incorrect
    4. something else

    Anyone have an idea of what it could be?

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

    Default Re: index page not displaying after install

    Sorry, without having direct server access to once again attempt to figure out what bizarre configuration Network Solutions has come up with for their server configurations, all I can do is guess, and post an idea here, let you try it, have it fail, try something else, and so on and so on ... only to find out that their server configuration is crap.

    As I've said elsewhere, it's not worth flogging a dead horse ... they're not a hosting company who lives up to their expensive expectations as far as I've ever experienced.
    .

    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.

  9. #9
    Join Date
    Apr 2006
    Location
    Columbus, OH
    Posts
    99
    Plugin Contributions
    0

    Default Re: index page not displaying after install

    Anyone know of a way to confirm the physical path without having to actually talk to the host?

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

    Default Re: index page not displaying after install

    The installer already tells you what the server operating system is telling it about the physical path. You can see that information on the System Inspection page.
    .

    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. v153 CKEditor 3.7m not displaying at all after install
    By tmdeppner in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 16 Nov 2014, 07:49 PM
  2. v139g One page is suddenly not displaying properly: main_page=index&cPath=5
    By jayne514 in forum General Questions
    Replies: 2
    Last Post: 24 Mar 2012, 10:51 PM
  3. Product Info Page Additional Images Not Displaying After Upgrade
    By OutdoorsInteriors in forum Upgrading from 1.3.x to 1.3.9
    Replies: 2
    Last Post: 25 Jan 2009, 08:13 PM
  4. No index.php in root after install
    By SoundVines in forum Installing on a Windows Server
    Replies: 1
    Last Post: 2 Aug 2007, 06:50 AM
  5. Blank index.php and /admin/index.php page after install
    By gsummerlin in forum Installing on a Linux/Unix Server
    Replies: 4
    Last Post: 14 Jul 2006, 10:04 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