Author Topic: Local install hangs at progress bar  (Read 5850 times)

Offline gob33

  • Newbie
  • *
  • Posts: 43
  • Karma: +7/-0
    • View Profile
Local install hangs at progress bar
« on: November 16, 2013, 11:39:19 AM »
I just was unable to locally fresh install 1.1.7
It hangs at the progress bar which stays empty and the computer do nothing except waiting indefinitely.

It is the same with 1.1.6. Halting at progress bar.
« Last Edit: May 19, 2014, 06:08:24 AM by gob33 »

Offline abantecart

  • Administrator
  • Hero Member
  • *****
  • Posts: 4358
  • Karma: +298/-10
    • View Profile
    • Ideal Open Source Ecommerce Solution
Re: [1.1.7] Installation fails
« Reply #1 on: November 17, 2013, 02:34:28 PM »
I suspect this is something related to your PHP server setup. Please post what OS are using and what version of PHP and MySQL
Please  rate your experience or leave your review
We need your help to build better free open source ecommerce platform for everyone. See how you can help

Offline gob33

  • Newbie
  • *
  • Posts: 43
  • Karma: +7/-0
    • View Profile
Re: [1.1.7] Installation fails
« Reply #2 on: November 18, 2013, 06:20:12 AM »
My wamp server is good and run osCommerce, Zencart, Opencart, ...
I pass runlevel=1, it breaks inside javascript at step 2.
And I dont understand the error message as Jquery is loaded in the header ?
« Last Edit: November 18, 2013, 06:25:34 AM by gob33 »

Offline gob33

  • Newbie
  • *
  • Posts: 43
  • Karma: +7/-0
    • View Profile
Re: [1.1.7] Installation fails
« Reply #3 on: November 18, 2013, 08:10:12 AM »
Ok i got it working by hand.

If you are not connected to internet (local install for tests), JQuery cant be loaded through Google and install hangs. The "if(!jQuery)" code loading local JQuery in header.tpl fails.

In fact, it is completely useless to load the latest JQuery version for an install/upgrade procedure and that code should be removed.

« Last Edit: November 19, 2013, 06:39:29 AM by gob33 »

Offline gob33

  • Newbie
  • *
  • Posts: 43
  • Karma: +7/-0
    • View Profile
Re: [1.1.7] Local install hangs at progress bar
« Reply #4 on: May 17, 2014, 12:21:48 PM »
For 1.1.7, 1.1.8 and 1.1.9, the following code fetching jquery through google always hangs on local install without internet connection:

public_html / install / view / template / common / header.tpl
Code: [Select]
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
   var include = '<script type="text/javascript" src="view/javascript/jquery-1.7.2.min.js">';
   document.write(include);
}
</script>

It is completely useless, a simple and direct
Code: [Select]
<script type="text/javascript" src="view/javascript/jquery-1.7.2.min.js"></script>
do the same as the 1.7.2 is already in the distrib.
« Last Edit: May 17, 2014, 12:29:38 PM by gob33 »

 

Powered by SMFPacks Social Login Mod