PDA

View Full Version : Image Problems


rockerzteam
03-30-2018, 12:41 AM
I am having a problem! I installed a fresh copy of vbulletin 3.8.7 and I am having problem with avatars and all images not showing up. If I add an image attachment to a thread it won't show up. My avatars also don't show up!

--------------- Added 1522382242 at 1522382242 ---------------

Invalid SQL:

SELECT *
FROM datastore
WHERE title IN ('','options','bitfields','attachmentcache','forum cache','usergroupcache','stylecache','languagecach e','products','pluginlist','cron','profilefield',' loadcache','noticecache','userstats','birthdaycach e','maxloggedin','iconcache','eventcache','mailque ue');

MySQL Error : Table 'xxxxx_forums.datastore' doesn't exist
Error Number : 1146
Request Date : Wednesday, March 28th 2018 @ 02:12:06 PM
Error Date : Wednesday, March 28th 2018 @ 02:12:06 PM
Script : http://xxxxxxx.xxx/
Referrer :
IP Address : xxxxxxxxxx
Username :
Classname : vB_Database
MySQL Version :

snakes1100
03-30-2018, 09:40 AM
To start, create the datastore table, its missing.

CREATE TABLE datastore (
title CHAR(50) NOT NULL DEFAULT '',
data MEDIUMTEXT,
unserialize SMALLINT NOT NULL DEFAULT '0',
PRIMARY KEY (title)
);

Then upload & run tools.php