![]() |
Trying To Search
ok on my Vbulletin forums ( version 3.6.4) everytime i try to search i get the following error:
Database error in vBulletin 3.6.4: Code:
Invalid SQL:any1 know a fix? or how i can fix this? |
Re: Trying To Search
Do you have any mods / hacks installed.
|
Re: Trying To Search
a do now... but when first installed board a didnt and it was the same
|
Re: Trying To Search
Run the following query.
Code:
ALTER TABLE vbsearch ADD COLUMN `completed` smallint(5) unsigned NOT NULL default '1'; |
Re: Trying To Search
answer from queery
An error occurred while attempting to execute your query. The following information was returned. error number: 1146 error desc: Table 'web82-honcho.vbsearch' doesn't exist |
Re: Trying To Search
This table should exist. As you have a prefix use the following. phpbb_search as table name.
Code:
ALTER TABLE <vbsearch TABLENAME = phpbb_search> ADD COLUMN `completed` smallint(5) unsigned NOT NULL default '1'; |
Re: Trying To Search
I have no idea what is your table name but I am assuming it should be phpbb_search and so if you read the post what to execute you will see I have mentioned what to be substituted as table name.
Now try this Code:
ALTER TABLE phpbb_search ADD COLUMN `completed` smallint(5) unsigned NOT NULL default '1'; |
| All times are GMT +5.5. The time now is 08:35. |