support

Local install hangs at progress bar

Started by gob33, November 16, 2013, 11:39:19 AM

Previous topic - Next topic

gob33

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.

abantecart

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

gob33

#2
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 ?

gob33

#3
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.


gob33

#4
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

<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

<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.

Forum Rules Code of conduct
AbanteCart.com 2010 -