After installation:
warning: Invalid argument supplied for foreach() in /home/sites/example.com/public_html/includes/common.inc on line 3286.
warning: Invalid argument supplied for foreach() in /home/sites/example.com/public_html/includes/common.inc on line 3207.
Installed G2 schema
common.inc
function _drupal_initialize_schema($module, &$schema) {
// Set the name and module key for all tables.
foreach ($schema as $name => $table) { // line 3286
function drupal_install_schema($module) {
$schema = drupal_get_schema_unprocessed($module);
_drupal_initialize_schema($module, $schema);
$ret = array();
foreach ($schema as $name => $table) { // line 3207
db_create_table($ret, $name, $table);
}
Comments
Comment #1
kenorb commentedSo the schema wasn't created, because after using the module, I've got following errors:
Comment #2
layik commentedCould you tell me if you sorted this issue out? and if so could you tell us please?
Comment #3
nancydru