Jump to content

Table dn_modules_perfs doesn't exist


Recommended Posts

Hi~

 

I tried to update to prestashop 1.6.1.0 but many bugs appear.

I restored prestashop 1.6.0.14 and enabled debug mode, this error appear as ps 1.6.1.0

 

I found revsliderprestashop then uninstalled module but it is always same error.

Please see attachment image.

 

post-707850-0-80512900-1440096133_thumb.png

Link to comment
Share on other sites

hello

 

I will try suggest some help for you.

 

First please try and check modules folder

 

Make sure no folder have a capital letter

 

Example

Blockcms

 

 

it should be

blockcms

 

If this is not the issue please try check module folders in ftp have correct permission.

  • Like 1
Link to comment
Share on other sites

hello

 

I will try suggest some help for you.

 

First please try and check modules folder

 

Make sure no folder have a capital letter

 

Example

Blockcms

 

 

it should be

blockcms

 

If this is not the issue please try check module folders in ftp have correct permission.

 

Hello,

 

I checked them before postting here.

I don't know which modules created table modules_perfs.

I googled and see this link: http://scm.prestashop.com/rdiff/PrestaShop_v.1.5?csid=fc9b51114196e1612e34acac2ab3d4a05ed9c85b&u&N

 

But my prestashop is 1.6.0.14 version.

When I try to upgrade to 1.6.1.1 version, that bug disappear but I'm using agilemultiseller module and warehouse theme on ps 1.6.0.14.

Prestashop 1.6.1.1 version, agilemultiseller, warehouse is not stable version.

Link to comment
Share on other sites

Hello,

 

I found this bug.

 

This error said that we need to create table modules_perfs to save cache modules.

Please go to phpmyadmin and insert this code:

CREATE TABLE IF NOT EXISTS `ps_modules_perfs` (
  `id_modules_perfs` int(11) unsigned NOT NULL,
  `session` int(11) unsigned NOT NULL,
  `module` varchar(62) NOT NULL,
  `method` varchar(126) NOT NULL,
  `time_start` double unsigned NOT NULL,
  `time_end` double unsigned NOT NULL,
  `memory_start` int(10) unsigned NOT NULL,
  `memory_end` int(10) unsigned NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=419 DEFAULT CHARSET=utf8;

ALTER TABLE `ps_modules_perfs`
  ADD PRIMARY KEY (`id_modules_perfs`),
  ADD KEY `session` (`session`);

ALTER TABLE `ps_modules_perfs`
  MODIFY `id_modules_perfs` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=419;
Edited by codochi (see edit history)
Link to comment
Share on other sites

  • 1 month later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...