Joomla 3.0 installation database creating issue

2019-04-01 22:25发布

I try to install Joomla 3 in my system. After download and extract files I put files in my localhost folder wamp/www/jesite/myfiles. After that I run the jesite folder and it displays index page then I give the corresponding details in configuration, database and overview section.

Then I pressed install button after it shows a window with four section

First it completed Backing up old databases and then it shows progress bar in creating database tables. But after that it shows the progress bar for a long time and when I checked in DB it creates 78 tables. But after it shows only the progress bar.

I dont know what I'm doing wrong. Anyone can help me to solve this problem.

9条回答
干净又极端
2楼-- · 2019-04-01 23:12

To solve this issue i changed the data base password and removed the special characters, MySqli is an improved version on MySql driver so it is not recommended to change this value on the configuration, also changing to MyIsam removes the integrity of the relations and transactions, so this is also a point of considering. So if your server supports MySqli you should use this option with the default InnoDB engine.

查看更多
叛逆
3楼-- · 2019-04-01 23:18

Edit the SQL install file (Root/installation/SQL/mysql/joomla.sql). Open with notepad and replace all "ENGINE=InnoDB" with "ENGINE=MyIsam" the DB type then it will work successfully.

This answer has helped me a lot, Joomla works no after a long search, although I still don't now why I had to make this change in the script, does the original script work well with other users how implement Joomla?

查看更多
放荡不羁爱自由
4楼-- · 2019-04-01 23:19

changing max_execution_time = 30 to 3000 worked for me for Wampserver 2.4

查看更多
登录 后发表回答