AbanteCart Community

eCommerce construction => Installation and Configuration => Fresh Installation => Topic started by: gob33 on November 16, 2013, 11:39:19 AM

Title: Local install hangs at progress bar
Post by: gob33 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.
Title: Re: [1.1.7] Installation fails
Post by: abantecart 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
Title: Re: [1.1.7] Installation fails
Post by: gob33 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 ?
Title: Re: [1.1.7] Installation fails
Post by: gob33 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.

Title: Re: [1.1.7] Local install hangs at progress bar
Post by: gob33 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.