hello
i switch from 6.x-1.x-dev to 6.x-2.x-dev.. i deinstall the 6.x-1.x-dev and install 2.x-dev
now i become errors like this
* user warning: Table x.menu_links' doesn't exist query: SELECT COUNT(mlid) FROM menu_links WHERE menu_name = 'primary-links' in x/httpdocs/sites/all/modules/xmlsitemap/xmlsitemap.module on line 1105.
* user warning: Table 'x.menu_links' doesn't exist query: SELECT COUNT(mlid) FROM menu_links WHERE menu_name = 'navigation' in x/httpdocs/sites/all/modules/xmlsitemap/xmlsitemap.module on line 1105.
* user warning: Table 'x.menu_links' doesn't exist query: SELECT COUNT(mlid) FROM menu_links WHERE menu_name = 'secondary-links' in x/httpdocs/sites/all/modules/xmlsitemap/xmlsitemap.module on line 1105.
* user warning: Table 'x.node' doesn't exist query: 'story' in x/httpdocs/sites/all/modules/xmlsitemap/xmlsitemap.module on line 1105.
* user warning: Table 'x.node' doesn't exist query: SELECT COUNT(nid) FROM node WHERE type = 'blog' in x/httpdocs/sites/all/modules/xmlsitemap/xmlsitemap.module on line 1105.
* user warning: Table 'x.node' doesn't exist query: SELECT COUNT(nid) FROM node WHERE type = 'book' in x/httpdocs/sites/all/modules/xmlsitemap/xmlsitemap.module on line 1105.
* user warning: Table 'x.node' doesn't exist query: SELECT COUNT(nid) FROM node WHERE type = 'galerie_foto' in x/httpdocs/sites/all/modules/xmlsitemap/xmlsitemap.module on line 1105.
* user warning: Table 'x.node' doesn't exist query: SELECT COUNT(nid) FROM node WHERE type = 'geschichte' in /x/httpdocs/sites/all/modules/xmlsitemap/xmlsitemap.module on line 1105.
* user warning: Table 'x.node' doesn't exist query: SELECT COUNT(nid) FROM node WHERE type = 'landing_pages' in x/httpdocs/sites/all/modules/xmlsitemap/xmlsitemap.module on line 1105.
and more
i include mutch of my content types
Comments
Comment #1
dave reidI don't see what is going wrong here. The SQL that is printed out is obviously not trying to access the x.tablename tables otherwise it would have printed it. Does your database have the node and menu_links tables in it? Do you have prefixes enabled for some of these tables in your site's settings.php?
Comment #2
eule commentedHi David
yep i setup in the settings.php my db prefix
---settings.php
* Database URL format:
* $db_url = 'mysql://username:password@localhost/databasename';
* $db_url = 'mysqli://username:password@localhost/databasename';
* $db_url = 'pgsql://username:password@localhost/databasename';
*/
$db_url = 'mysql://user:pass@localhost/databasename';
$db_prefix = 'DBprefix_';
/**
* Access control for update.php script
------settings.php
i just wondering me now why the xmlsitemap module is going databasename but not DBprefix_
user warning: Table 'nameof_DB.node' doesn't exist query: SELECT COUNT(nid) FROM node WHERE type = 'news' in /srv/www/vhosts/vwspeed.eu/httpdocs/sites/all/modules/xmlsitemap/xmlsitemap.module on line 1113.
Comment #3
dave reidAre you copying the exact error messages? Because it doesn't make sense for it to be saying that "x.node' doesn't exist" but the queries does not even contain "x.node": SELECT COUNT(nid) FROM node WHERE type = 'blog'.
Comment #4
dave reidAha! I see what's going on. I'll have it fixed shortly.
Comment #5
dave reidFixed in CVS with:
http://drupal.org/cvs?commit=323938
Comment #6
eule commentedhi david ..
i am drunk and dont know at the moment what u see ;)