Page 1 of 2 12 LastLast
Results 1 to 10 of 16
  1. #1
    Join Date
    Mar 2012
    Posts
    11
    Plugin Contributions
    0

    Default Installation stalls on email input

    Installing 1.5.5. At the Admin Setup page. I input the Admin Superuser email address, but when I click the continue button, it tells me I need to "use the required format." There's nothing wrong with the address. I've tried using three different addresses, still not accepting it.

  2. #2
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Installation stalls on email input

    Given that you've used "3 different addresses", I'm assuming they don't all contain strange characters, etc. SO, that sounds like something's interfering with the javascript validator.
    And, while I'd definitely like to find out exactly what's causing it, if you're just wanting to "get started" and jump to the Admin, you can do that and use the default admin username of "Admin" and password of "admin". It'll ask you to reset that password, and then you can go to the Admins menu and change/set the username/email manually there. You'll also want to manually set the 10 notifications email addresses in the Admin->Configuration->Email Options screen.

    If you're interested in troubleshooting further, I'd like to see some screenshots, and perhaps even have the URL to that page to do some live debug research with it from my own browser. You could send that via forum Private Message.
    I'd also like to know which browser you're using when you're seeing this.
    .

    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.

  3. #3
    Join Date
    Mar 2012
    Posts
    11
    Plugin Contributions
    0

    Default Re: Installation stalls on email input

    That's correct, the emails do not contain any odd characters, they are legit email addresses.

    This is happening during the install process, so I can't get by it. I've tried using Firefox, Safari, Chrome & Opera. In all but Opera, I can't get past the first install screen, the Continue button doesn't work.

    Here is a screen shot in Opera, showing the error message.
    Name:  Image2.png
Views: 132
Size:  53.2 KB

  4. #4
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Installation stalls on email input

    Odd. I can't trigger either of those problems on any of those same browsers.

    2 suggestions:

    1. Given that you say you're having other problems with multiple browsers, it makes me wonder if perhaps the zc_install folder didn't fully upload properly and perhaps some files are missing/damaged.
    Could you re-upload the whole folder and test again, including the "first page problem in other browsers".

    2. You could also try editing zc_install/includes/templates/common/tpl_main_page.php ... on line 66 is the email pattern. Take that line out (don't just comment it out), and see if it properly falls back to another validation pattern.


    What's particularly interesting about the message you're seeing, is that the phrase "Please use the required format" doesn't exist anywhere in Zen Cart or any of the javascript libraries it uses.
    .

    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.

  5. #5
    Join Date
    Mar 2012
    Posts
    11
    Plugin Contributions
    0

    Default Re: Installation stalls on email input

    I deleted that folder and re-uploaded it, but it didn't make any difference. Same with editing the tpl_main_page.php file, no joy. I may just have to wait til my cPanel offers the latest version and install it from there. Thanks for the help, everyone!

  6. #6
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Installation stalls on email input

    Very unusual.

    You could carry on by logging into your Admin, as I described in my first post above. I'd be curious if you experience any other anomalies when doing that.
    .

    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
    Mar 2012
    Posts
    11
    Plugin Contributions
    0

    Default Re: Installation stalls on email input

    Can't get to the admin. If I go to http://sarmssource.com/admin/ , I get:
    ERROR 0071: There appears to be a problem with the database. Maintenance is required.

    I tried the install on my tablet, too. Couldn't get past the second screen, the continue button doesn't work.

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

    Default Re: Installation stalls on email input

    In your zc_install I'm seeing that the ajax/javascript calls to the server are failing ... specifically, they're resulting in generic "500 Error" responses, which means the server is unhappy with something it's encountering ... whether that's PHP errors, or the server's security tools are disagreeing with the permission-level you've set on files, etc.

    If you made the configure.php files to be "777", try changing those to "755" instead, because sometimes 777 triggers that generic "500" response.

    Additionally, check the webserver's Apache error_log (via your hosting control panel) to see what the cause of the 500 error is.
    .

    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
    Mar 2012
    Posts
    11
    Plugin Contributions
    0

    Default Re: Installation stalls on email input

    I deleted all files on the server, downloaded a new zip file, uploaded all new files, changed permissions as in the instructions with the exception on the configure.php files, which I set to 755. Still no joy.

    The error logs show this:
    client denied by server configuration: /home/srss2950/public_html/includes/filenames.php

    filenames.php is set to 644.

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

    Default Re: Installation stalls on email input

    1. The "client denied" to "filenames.php" is actually very intentional. That's how zc_install tests whether .htaccess properly blocks unauthorized access to files under the /includes/ folder. So, that particular error is completely expected.

    2. But, on "page 2" (System Setup), the Continue button only "works" via an Ajax call which verifies the data entered on-screen. If you tell your browser to display Console Errors you'll see the "Error 500" while trying to call the ajax file for the systemsetup page. You'll want to look for that filename in your Apache error logs.
    .

    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.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v155 Installer stalls at creating Database
    By bscho in forum Installing on a Linux/Unix Server
    Replies: 22
    Last Post: 7 Jul 2016, 10:15 PM
  2. v153 stalls at database setup during installation
    By timwkrause in forum Installing on a Linux/Unix Server
    Replies: 1
    Last Post: 13 Jul 2014, 02:53 AM
  3. Email Marketing Input Needed
    By fmckinnon in forum General Questions
    Replies: 8
    Last Post: 25 Jun 2009, 12:46 AM
  4. Altering compulsory email input on login and sign-up
    By SteveCollins in forum General Questions
    Replies: 4
    Last Post: 2 Jun 2007, 12:38 AM

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