Home  >  Article  >  CMS Tutorial  >  What to do if phpcms 2008 installation error occurs

What to do if phpcms 2008 installation error occurs

藏色散人
藏色散人Original
2020-01-14 09:10:041814browse

What to do if phpcms 2008 installation error occurs

What should I do if I get an error when installing phpcms 2008?

What to do if phpcms 2008 installation error occurs

#The reason why this error is reported may be that your mysql version may be too high.

Because the error location is: 'TYPE=MyISAM DEFAULT CHARSET=gbk', type and engine both represent database engines, but type is only backward compatible. It is recommended to use engine to solve the problem.

The correct sql statement is as follows:

CREATE TABLE `phpcms_admin` ( `userid` MEDIUMINT(8) UNSIGNED NOT NULL,

`username` CHAR (20) NOT NULL,

`allowmultilogin` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',

`alloweditpassword` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',

`editpasswordnextlogin` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',

`disabled` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0', PRIMARY KEY (`userid`))

ENGINE=MYISAM DEFAULT CHARSET=gbk

Or the simplest way is to install a php integrated installation package with a mysql version lower than 5.2, which can successfully install phpcms.

PHP Chinese website, a large number of free PHPCMS tutorials, welcome to learn online!

The above is the detailed content of What to do if phpcms 2008 installation error occurs. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn