Working on new Installer for v1.6.0 ...
Hi,
Just wanted to plug the github repository once more, and also announce that we have pushed code for the new installer in v1.6.
https://github.com/zencart/zencart/c...2277dc009e820e
We have also uploaded a couple of videos to our youtube channel to show off the new installer.
http://www.youtube.com/zencart
disclaimer: v1.6.0 is work in progress. you should not use the 1.6.0 code on github for a live store until it is officially released and merged to master.
Re: Zen Cart GitHub Repository
Nice job on the installer.
One minor thing, why am I required to enter a database password. On my localhost I don't use a password, because it is not necessary. Of-course production server are required to use one. Now i need to add (and remember) a password to the database.
Re: Zen Cart GitHub Repository
Quote:
Originally Posted by
Design75
Nice job on the installer.
One minor thing, why am I required to enter a database password. On my localhost I don't use a password, because it is not necessary. Of-course production server are required to use one. Now i need to add (and remember) a password to the database.
While it's not necessary, I have a password on my localhost database. I guess we could make the password non-required, given that hosts will definitely set a password.
Re: Zen Cart GitHub Repository
If you want to remove the requirement yourself, you need to edit zc_install/includes/templates/database_default.php
around line 130 you should see this javascript
Code:
$().ready(function() {
$("#db_setup").validate({
submitHandler: function(form) {
ajaxTestDBConnection(form);
},
rules: {
db_host: "required",
db_user: "required",
db_password: "required",
db_name: "required",
sql_cache_dir: {
required: function(element) {
return $("#sql_cache_method").val() == 'file';
}
}
},
messages: {
}
});
});
and you need to remove the line
Code:
db_password: "required",
Re: Zen Cart GitHub Repository
Thank you, I will try.
In the mean time I added a password to the database user, and proceeded.
I encountered a new problem. When the databases are created and being filled with the demo data the installation program stops. The progress bar stay at almost filled, end never proceeds any further.
This happen only on my local install with xampp 1.8.1, winxp, php 5.4.7, Apache/2.4.3, 5.5.27 - MySQL
On a normal productoin server all is okay
Re: Zen Cart GitHub Repository
Quote:
Originally Posted by
Design75
Thank you, I will try.
In the mean time I added a password to the database user, and proceeded.
I encountered a new problem. When the databases are created and being filled with the demo data the installation program stops. The progress bar stay at almost filled, end never proceeds any further.
This happen only on my local install with xampp 1.8.1, winxp, php 5.4.7, Apache/2.4.3, 5.5.27 - MySQL
On a normal productoin server all is okay
Do you see any relevant info in the logs directory.
Also helpful would be to install firebug in your browser. That might throw up any Javascript errors that are occuring.
I will try and do a run through with a xampp install when I get a chance.
Thanks for the feedback :)
Re: Zen Cart GitHub Repository
Quote:
Originally Posted by
wilt
Do you see any relevant info in the logs directory.
Also helpful would be to install firebug in your browser. That might throw up any Javascript errors that are occuring.
I will try and do a run through with a xampp install when I get a chance.
Thanks for the feedback :)
No error-logs, the installer just stops.
I will try again later this evening, and check on the javascripts