AbanteCart Community
eCommerce construction => Installation and Configuration => Fresh Installation => Topic started 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.
-
I suspect this is something related to your PHP server setup. Please post what OS are using and what version of PHP and MySQL
-
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 ?
-
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.
-
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.