Closed (outdated)
Project:
Drupal core
Version:
8.5.x-dev
Component:
install system
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
16 May 2013 at 08:47 UTC
Updated:
5 Mar 2018 at 23:09 UTC
Jump to comment: Most recent
Comments
Comment #1
cola commentedHi All
can anybody help with this bug?
regards
Comment #2
noneTaken commentedSame problem here with dev and alpha 2 version.
EDIT
In my case, it has something to do with either Zend server CE 5.6 or PHP5.3. Probably Zend server.
Comment #3
gamelodge commentedSame for me - both alpha and dev.
PHP 5.3.14
Comment #4
mpp commentedError occurs during installation:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'cache_bootstrap' doesn't exist: DELETE FROM {cache_bootstrap} WHERE (cid IN (:db_condition_placeholder_0)) ; Array ( [:db_condition_placeholder_0] => system_list )
Using PHP 5.3.26
Comment #5
berdirWeird, those tables are supposed to be auto-created. Maybe not on delete?
Comment #6
chx commentedThat's not it. deleteMultiple is wrapped in try - catch (\Exception $e) { $this->catchException($e); } as everything else and catchException only propagates the exception if the table exists.
Comment #7
pflame commentedI am facing the same problem in my windows 7. Once when I select the minimal profile the installation finished but I got these errors every time I install a new module. When I drop the table which is mentioned in the error, the module is getting installed and the table is creating again.
Comment #8
pflame commentedAfter lot of research, I found that this is the issue with Operating System and Mysql. In my case the problem is with the INNODB engine. In the Mysql error log, I got errors saying Innodb can not have access to create file in the data directory.
When create table command executed, Mysql is able to create .frm file but .ibd file Innodb could not create, so because of that, the table creation is not complete, for insert command it will raise error saying table does not exists, for create command it will raise error saying the table already exists.
Finally I fixed this problem by installing Mysql 5.7 in F:\ drive. The issue might be because of the empty space in the Drive. Don't know exact solution but it is not related to Drupal, it is related to Mysql and Operating System.
Comment #9
cola commentedWe became this error with PHP 5.3
Now we change it to PHP 5.5 and it works fine
Comment #15
Anonymous (not verified) commentedPer #9 it was solved with PHP 5.5. Now it is minimal supported version.