Home > CMS Tutorial > PHPCMS > body text

What to do if phpcms 2008 installation error occurs

藏色散人
Release: 2020-01-14 09:10:04
Original
1734 people have browsed it

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!