Results 1 to 10 of 16

Hybrid View

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

    Default Re: HTTP 500 on secure pages?

    For the test.html make the content:
    <html>
    <body>
    Hello world via html
    </body>
    </html>
    Then try a file called test.php with the content:
    PHP Code:
    <?php
    echo 'Hello World via php';
    ?>
    And test the php file with:
    https://vault2.secured-url.com/hannah/test.php

    Then are you able to reach it with:
    http://www.elitefeetrunning.co.uk/test.php
    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!

  2. #2
    Join Date
    Mar 2007
    Posts
    9
    Plugin Contributions
    0

    Default Re: HTTP 500 on secure pages?

    Thank you ever so much for your reply, I have done what you suggested and I am able to reach both:

    And test the php file with:
    https://vault2.secured-url.com/hannah/test.php

    Then are you able to reach it with:
    http://www.elitefeetrunning.co.uk/test.php

    Can I just check on what the content should be in the SSL folder it seems this is the problem now.
    When I go to a secure page I am being directed to /zc_install/index.php

    This is now getting a little confusing. Why isn't the SSL selecting the correct pages?

    Thanks in advance for any help.

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

    Default Re: HTTP 500 on secure pages?

    Either you have to manually maintain 2 directories, one for non-secure and one for secure pages ...

    Or, your site is not setup correctly ...

    Contact your hosting site and ask why your secure pages cannot see the same files that your non-secure pages can ...
    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!

  4. #4
    Join Date
    Mar 2007
    Posts
    9
    Plugin Contributions
    0

    Default Re: HTTP 500 on secure pages?

    Thank you very much for your replies, it has got me going in the right direction.

    I have spoke to my hosting site over the past few days and they say this:

    The SSL space and your nomal webspace are handle completely independently. They are on completely different servers.

    and

    You should only need to install the secure payment pages on the SSL server, I would advise contacting the developers with regrds to configuring this.

    I hope this makes sence. Please can you help advise on what files should be dropped into the SSL space so that I am not always directed to the install pages of the site content?

    Thanks again.

  5. #5
    Join Date
    Mar 2007
    Posts
    9
    Plugin Contributions
    0

    Default Re: HTTP 500 on secure pages?

    I have asked Fasthosts about installing zen cart in the SSL space and what physical path to use, there response is below:

    I am afraid that since the SSL space is on a different server, you will not be able to use the physical path from your webspace. You will have to use https:// references to the files in the SSL space. Most shopping cart software provides an option for the URL to the secure space. If your cart does not do it this way, and requires a physical path to access it, then it may well not work without modification.

    Please help, any suggestions would be much appreciated.
    Thanks

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

    Default Re: HTTP 500 on secure pages?

    If your server is setup right and uses symbolic links for the secure and non-secure properly this is not a problem ...

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

    we could check to see if you have any errors in your configuration ...
    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!

  7. #7
    Join Date
    Mar 2007
    Posts
    9
    Plugin Contributions
    0

    Default Re: HTTP 500 on secure pages?

    Thanks for your help again, my /includes/configure.php file is posted below.
    Please note that the secure foldername has changed from hannah to vienna.

    define('HTTP_SERVER', 'http://www.elitefeetrunning.co.uk');
    define('HTTPS_SERVER', 'https://vault2.secured-url.com/vienna');
    // Use secure webserver for checkout procedure?
    define('ENABLE_SSL', 'true');
    // 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', '/');
    define('DIR_WS_HTTPS_CATALOG', '/');
    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', '//nas34ent/domains/e/elitefeetrunning.co.uk/user/htdocs/');
    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/');


    Hope you can find a possible fix. thx

 

 

Similar Threads

  1. v150 HTTP 500 Internal Server Error accessing admin pages
    By drcubi in forum General Questions
    Replies: 7
    Last Post: 25 Jun 2012, 06:09 AM
  2. Replies: 13
    Last Post: 4 Jun 2011, 02:31 PM
  3. HTTP 500 Internal Server Error after completed transaction (GoDaddy hosting)
    By xparm in forum PayPal Express Checkout support
    Replies: 13
    Last Post: 3 Dec 2010, 04:36 PM
  4. SSL install on dedicated fasthosts centos server = blank screen for http???
    By garethrooney in forum Installing on a Linux/Unix Server
    Replies: 11
    Last Post: 10 Nov 2009, 02:05 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