اقتباس:
|
المشاركة الأصلية كتبت بواسطة ابن فضلان
السلام عليكم
قمت قبل ساعات بتركيب المنتدى، واعتقدت ان كل شيء تمام، ولكن وصلتني رسالة هذا نصها: كود: Database error in vBulletin :
Invalid SQL:
SELECT *
FROM datastore
WHERE title IN ('','options','bitfields','attachmentcache','forumcache','usergroupcache','stylecache','languagecache','products','pluginlist','cron','profilefield','userstats','birthdaycache','maxloggedin','iconcache','eventcache','mailqueue');
MySQL Error : Table 'xxxxxxxxxxxxxxxxxx.datastore' doesn't exist
Error Number : 1146
Date : Friday, April 13th 2007 @ 03:15:54 PM
Script : http://xxxxxxxxxxxxxx/forum/
Referrer : http://xxxxxxxxxxxxxxxxx/
IP Address : xxx.xxx.xxx.xx
Username :
Classname : vB_Database لا اعرف ماذا تعني هذه الرسالة وكيف يمكن التعامل معها.
برجاء المساعدة وجزاكم الله خير الجزاء
ملحوظة: النسخة مرخصة، والاستضافة مدفوعة. |
Table 'xxxxxxxxxxxxxxxxxx.datastore' doesn't exist
هناك جدول مفقود
أزرع هذا الامر وان شاء الله بينصلح الحال
كود PHP:
CREATE TABLE `vbdatastore` (
`title` varchar(15) NOT NULL default '',
`data` mediumtext,
PRIMARY KEY (`title`)
) TYPE=MyISAM;
INSERT INTO `vbdatastore` VALUES ('attachmentcache', '');
INSERT INTO `vbdatastore` VALUES ('products', '');
INSERT INTO `vbdatastore` VALUES ('languagecache', '');
INSERT INTO `vbdatastore` VALUES ('stylecache', '');
INSERT INTO `vbdatastore` VALUES ('options', '');
INSERT INTO `vbdatastore` VALUES ('smiliecache', '');
INSERT INTO `vbdatastore` VALUES ('iconcache', '');
INSERT INTO `vbdatastore` VALUES ('bbcodecache', '');
INSERT INTO `vbdatastore` VALUES ('userstats', '');
INSERT INTO `vbdatastore` VALUES ('usergroupcache', '');
INSERT INTO `vbdatastore` VALUES ('forumcache', '');
INSERT INTO `vbdatastore` VALUES ('cron', '');
INSERT INTO `vbdatastore` VALUES ('bitfields', '');
INSERT INTO `vbdatastore` VALUES ('maxloggedin', '');
INSERT INTO `vbdatastore` VALUES ('ranks', '');
INSERT INTO `vbdatastore` VALUES ('mailqueue', '');
INSERT INTO `vbdatastore` VALUES ('wol_spiders', '');
INSERT INTO `vbdatastore` VALUES ('banemail', '');
INSERT INTO `vbdatastore` VALUES ('birthdaycache', '');
INSERT INTO `vbdatastore` VALUES ('eventcache', '');
INSERT INTO `vbdatastore` VALUES ('pluginlist', '');
INSERT INTO `vbdatastore` VALUES ('pluginlistadmin', '');