The Arcive of vBulletin Modifications Site. |
|
Database Error! Details »»
|
||||||||||||||||||||||||||||
Here are a few errors that I am getting from my forum so at the moment nothing works (except the admincp and the index and forumdisplay) :
Quote:
Quote:
Quote:
I was upgrading from Zero Tolerance's hack 1.5 to AWS. Show Your Support
|
||||||||||||||||||||||||||||
| Comments |
|
#2
|
||||
|
||||
|
It looks like you didn't run the query to make the warn_notes table.
|
|
#3
|
|||
|
|||
|
Where and how do I do this?
|
|
#4
|
||||
|
||||
|
Since you can't get on your site, you will have to go to phpmyadmin and run the query from there.
|
|
#5
|
|||
|
|||
|
I can get into the admincp, does that help? If I have to use phpmyadmin what exactly do I have to do? (Im new to this)
What query do I have to run? |
|
#6
|
|||
|
|||
|
Try runninng the install_warn.php script again. In other words, point your browser to :
http://www.yourdomain.com/admincp/install_warn.php That should create the table for you. If that fails, use the following query: Code:
CREATE TABLE `bxhtptbr_vbforum.warn_notes` ( `wid` int(15) NOT NULL auto_increment, `warned_user` int(15) NOT NULL default '0', `warned_by` int(15) NOT NULL default '0', `warned_time` int(15) NOT NULL default '0', `warned_note` text NOT NULL, `warned_post` int(15) NOT NULL default '0', `warned_type` smallint NOT NULL default '1', PRIMARY KEY (`wid`) Let me know if that helps. |
|
#7
|
|||
|
|||
|
I am upgrading Zero Tolerance's hack 1.5 so can I run install_warn.php?
I tried it in phpmyadmin but it comes up with this error: Quote:
|
|
#8
|
|||
|
|||
|
Try running the above query from your adminCP. Or, run it through phpmyadmin, without using the table prefix in front of the name, in other words, run it like this:
Code:
CREATE TABLE `warn_notes` ( `wid` int(15) NOT NULL auto_increment, `warned_user` int(15) NOT NULL default '0', `warned_by` int(15) NOT NULL default '0', `warned_time` int(15) NOT NULL default '0', `warned_note` text NOT NULL, `warned_post` int(15) NOT NULL default '0', `warned_type` smallint NOT NULL default '1', PRIMARY KEY (`wid`) |
|
#9
|
|||
|
|||
|
Another error:
Quote:
|
|
#10
|
|||
|
|||
|
LoL, yes, I didn't match the opening parenthesis, did I?
Try this: Code:
CREATE TABLE `warn_notes` ( `wid` int(15) NOT NULL auto_increment, `warned_user` int(15) NOT NULL default '0', `warned_by` int(15) NOT NULL default '0', `warned_time` int(15) NOT NULL default '0', `warned_note` text NOT NULL, `warned_post` int(15) NOT NULL default '0', `warned_type` smallint NOT NULL default '1', PRIMARY KEY (`wid`) ) |
![]() |
|
|