Ack.. DBloaditems error
Just had to restart my server on a new computer, set everything up how I had before (it worked perfect before) but now when I start my world.exe I get this error
Code:
DBLoaditems query 'SELECT charges,unknown002,unknown003,merchantprice,unknown005,unknown006,unknown007,spellcharges,itemclass,name,lore,idfile.... lots of other things, ends with FROM items ORDER BY id', #1054: Unknown column 'spellcharges' in 'field list' Did I miss something in my installation? |
Update: my zones loaded, but they say [Error] Loading items FAILED!
|
Did you use a backup of your old DB or source a new one? I would guess you sourced a new one. Looks like you have columns in items table that your source doesn't know about. I had that issue putting new items dumps into my older server. Just have to mod the DB to fit what your server expects.
|
How would I go about doing that?
|
Re: Ack.. DBloaditems error
Quote:
|
Quote:
you have an error in syntax at 'unknown008' 'SpellCharges' INT(11) DEFAULT '0' NOT NULL at line 1 |
Quote:
You only have to do it one time. :D |
Im gettting the same exact error in syntax as you Trasher . Anyone know a fix?
|
Quote:
Quote:
Code:
ALTER TABLE items CHANGE `unknown008` `SpellCharges` INT(11) DEFAULT '0' NOT NULL; |
Actually, the syntax that finally worked for me was...
Code:
ALTER TABLE items CHANGE `unknown008` `SpellCharges` INT(11) DEFAULT "0" NOT NULL; |
Quote:
|
All times are GMT -4. The time now is 12:24 AM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.