Results 1 to 10 of 10
  1. #1
    Join Date
    Jul 2007
    Location
    Indiana
    Posts
    26
    Plugin Contributions
    0

    Default Please Help. I can't explain this

    I installed last night in Printable Shop domain name and it didn't work right. So I went to a domain I was not using on my dedicated server and put in the cart. It worked perfectly and I realized my mistake. http://www.mymomsbreak.com/shop/ work great from what i can tell.


    So I went back to http://printableshop.com which I had installed right in the main directory and deleted it and deleted all the databases and cleaned out the trash files. So I would be starting fresh.

    I installed again and have been working with it for six hours now and it simple will not load right. I have no format of the store at http://printableshop.com/crafts/index.php and at admin page I am getting Fatal error: Cannot redeclare class splitpageresults in /home/printabl/public_html/crafts/admin/includes/classes/split_page_results.php on line 23


    I have been at this five hours now. I have rechecked my steps repeatedly and I don't get it. Does reinstalling it mess it up.

    Thank you
    Kimberly

  2. #2
    Join Date
    Dec 2005
    Posts
    1,059
    Plugin Contributions
    2

    Default Re: Please Help. I can't explain this

    HI! Kimberl!

    Have you renamed some files in the distro that you uploaded?

    What is showing as the stylesheet is actually the readme_css_system.html
    from the docs folder.
    [FONT=Arial]Country Kitty Crafts[/FONT][FONT=Arial]
    [/FONT] [FONT=Garamond]
    [/FONT]

  3. #3
    Join Date
    Jul 2007
    Location
    Indiana
    Posts
    26
    Plugin Contributions
    0

    Default Re: Please Help. I can't explain this

    Quote Originally Posted by TShooters View Post
    HI! Kimberl!

    Have you renamed some files in the distro that you uploaded?

    What is showing as the stylesheet is actually the readme_css_system.html
    from the docs folder.
    Yes, I renamed the file. includes/dist-configure and the admin/includes/dist-configure both.

    thanks

    Kimberly
    Me - After 7 hours of looking at this screen!!

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

    Default Re: Please Help. I can't explain this

    Could you post, from the server, without the username and password the file:
    /includes/configure.php

    Sounds like an error in there from what I am seeing that could be causing this ...

    There could also be something as simple as some bad or corrupt files from the upload ...

    How are you loading the files to the server?
    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!]
    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
    Jul 2007
    Location
    Indiana
    Posts
    26
    Plugin Contributions
    0

    Default Re: Please Help. I can't explain this

    Quote Originally Posted by Ajeh View Post
    Could you post, from the server, without the username and password the file:
    /includes/configure.php

    Sounds like an error in there from what I am seeing that could be causing this ...

    There could also be something as simple as some bad or corrupt files from the upload ...

    How are you loading the files to the server?
    Here is the file from the server:

    <?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
    */

    /*************** NOTE: This file is similar, but DIFFERENT from the "admin" version of configure.php. ***********/
    /*************** The 2 files should be kept separate and not used to overwrite each other. ***********/
    // 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://printableshop.com');
    define('HTTPS_SERVER', 'https://printableshop.com');
    // 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', '/crafts/');
    define('DIR_WS_HTTPS_CATALOG', '/crafts/');
    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', '/home/printabl/public_html/crafts/');
    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', 'printabl_');
    define('DB_SERVER', 'localhost');
    define('DB_SERVER_USERNAME', 'database username here');
    define('DB_SERVER_PASSWORD', 'password here');
    define('DB_DATABASE', 'database name here');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // 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', 'file');
    define('DIR_FS_SQL_CACHE', '/home/printabl/public_html/crafts/cache');
    ?>

    - -- - - -- - - --- - - -


    I am using FileZilla FTP.

    I printed bought the book from Lulu and printed out the install help files also so that I have good instructions.

    If it helps, my dedicated server is run by Cpanel.

    Thank you for any help
    Kimberly

  6. #6
    Join Date
    Jul 2007
    Location
    Indiana
    Posts
    26
    Plugin Contributions
    0

    Default Re: Please Help. I can't explain this

    Other question,

    1) When FTP asked me to overwrite a file do I overwrite or not? I remember it asking me if I wanted to overwrite a file.

    2) If I delete the folder and all the datebases. Re-download, would this be a good way to start over? Or will it make it worse re-installing from scratch.

    I just can't get why one install worked but the second one didn't.

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

    Default Re: Please Help. I can't explain this

    You can start over by dropping all of the tables to the database ... be sure to backup in case of a problem ... then reloading all of the files via FTP ...

    I am not seeing anything obvious here ...

    I might suggest that you look at the newest release:
    http://www.zen-cart.com/forum/showthread.php?t=69769

    if you are going to start over ...

    And you might try first loading all of the files again just to see if that is all that it takes to fix the problems you are having ...
    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!]
    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!

  8. #8
    Join Date
    Jul 2007
    Location
    Indiana
    Posts
    26
    Plugin Contributions
    0

    Default Re: Please Help. I can't explain this

    Quote Originally Posted by Ajeh View Post
    You can start over by dropping all of the tables to the database ... be sure to backup in case of a problem ... then reloading all of the files via FTP ...

    I am not seeing anything obvious here ...

    I might suggest that you look at the newest release:
    http://www.zen-cart.com/forum/showthread.php?t=69769

    if you are going to start over ...

    And you might try first loading all of the files again just to see if that is all that it takes to fix the problems you are having ...
    Then new full version is what I am downloading however I am going to delete everything tonight and start over in the morning with a fresh mind. Redownload to a new folder etc. This has to be some bad file due because I uploading fresh install six times today. It worked the first time perfect on My Moms Break but second to sixth time on printableshop have all had a different error each time.

    Cross your finger for me. I will try again tomorrow and if I can't get it then just pay someone to do it for me.

  9. #9
    Join Date
    Jul 2007
    Location
    Indiana
    Posts
    26
    Plugin Contributions
    0

    Default Re: Please Help. I can't explain this

    YYYYYYYYYAAAAAAAAAAAAAAAA It installed.

    I have no idea why or what I did different but it installed !!!!!!

    http://printableshop.com/kidscraftsfamilyfun/index.php

    Now to see if i am smart enough to actually run this thing.


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

    Default Re: Please Help. I can't explain this

    Thanks for the update and glad that you got this installed and working ...
    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!]
    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!

 

 

Similar Threads

  1. Can someone please explain how I should setup shipping modules for this situation?
    By kjl1975 in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 2 Dec 2010, 12:08 AM
  2. please explain this php code
    By ianhg in forum General Questions
    Replies: 12
    Last Post: 31 Dec 2007, 11:13 AM
  3. Please explain this -- changed text and now alignment is off
    By lexcor in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 4 Oct 2007, 04:22 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