Mirco99 Posted January 3, 2023 Share Posted January 3, 2023 (edited) I've been trying to install with Xampp the developer version for two days but when it comes to creating the tables it generates HTTP 0 ERROR and stop on 12%. What can I do? Edited January 3, 2023 by Mirco99 (see edit history) Link to comment Share on other sites More sharing options...
juanrojas Posted January 3, 2023 Share Posted January 3, 2023 Hello, I recommend you work better with wampserver Link to comment Share on other sites More sharing options...
Mirco99 Posted January 3, 2023 Author Share Posted January 3, 2023 So the problem is that I'm working with xampp instead of wampServer? Link to comment Share on other sites More sharing options...
encinoman Posted January 3, 2023 Share Posted January 3, 2023 (edited) Hello, Micro99 I too was having the same problem installing PS8 on a ubuntu cloud server. I got up to the exact point you did, tested my DB connection but every time I went through the installer it stalled on 12% - Creating database tables. In my case, the problem was the db & db user that I had created. I deleted the nonworking user & table I made manually and the table created during installation and recreated them using the right mysql commands. Here is what I did to create a MySQL database and user using the command line: Open the MySQL command line interface by typing mysql -u root -p and entering your root password when prompted. Create a new database by running the following command: CREATE DATABASE prestashop; Create a new user by running the following command: CREATE USER 'prestashopuser'@'localhost' IDENTIFIED BY 'password'; Grant the new user permissions to access the database by running the following command: GRANT ALL PRIVILEGES ON prestashop.* TO 'prestashopuser'@'localhost'; Flush the privileges to apply the changes by running the following command: FLUSH PRIVILEGES; Then exit the mysql cli; by typing EXIT; Make a note of the database name ('prestashop' in this example), username ('prestashopuser' in this example), and password ('password' in this example) as you will need them later when installing PrestaShop. And here's what to do if you are using phpmyadmin: Open your web browser and go to your server's phpMyAdmin URL (usually something like http://localhost/phpmyadmin). Log in to phpMyAdmin using your MySQL root username and password. Click on the 'Databases' tab and enter a name for your new database in the 'Create new database' field. Click on the 'Create' button to create the database. Click on the 'Privileges' tab and then on the 'Add user' button. Enter a username and password for the new user, and make sure to select the 'Create database with same name and grant all privileges' option. Click on the 'Go' button to create the user and grant them privileges. After doing that I got past the 12% and finished installing PrestaShop. Good luck! Edited January 3, 2023 by encinoman (see edit history) 1 Link to comment Share on other sites More sharing options...
Nickz Posted January 3, 2023 Share Posted January 3, 2023 (edited) Try thirtybees that fork may work better for you Edited January 4, 2023 by Nickz (see edit history) Link to comment Share on other sites More sharing options...
Mirco99 Posted January 4, 2023 Author Share Posted January 4, 2023 Hi encinoman, I did what you recommended but the result is always the same... Link to comment Share on other sites More sharing options...
JBW Posted January 26, 2023 Share Posted January 26, 2023 XAMPP with PS8 is working fine with me. Which PHP Version do you use - PS is only compatible up to 8.1. Check the server error log if you can find more details about the errror Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now