Quote:
Originally posted by Solice
no, battlefight.php, and im at battle.php
after a while it just comes up with server timeout message
everything at default.
another thing;
in the itemshop main page everything is repeated, it isn't the templates because Ive checked 20 times already, and deleted any multiple ones.
|
What version are you running? Have you tried re-uploading another copy? What is your Max HP/MA/PP at? What background are you using for the battle?
If none of the above leads to a solution, then open battlefight.php and DELETE all '@' symbols. There should be 7 of them. Let me know if it shows an error message then and what it says.
What do you mean by everything is repeated? Are the actual items repeated, or are the item categories repeated? Or do you mean the page is repeated? How many times did you run the install script?
Gohan:
Hopefully soon.
Dribbles:
It appears that some of the file edits to showthread.php were not made. Have vbhacker generate a text file of the hack (this option is at the bottom of the vbhacker start screen), and manually re-apply all of the changes to showthread.php. In particular, the installer did not insert
PHP Code:
, battle_options, items_options
after
although it could have missed something else as well. The whole query should look something like (but not necessarily EXACTLY like):
PHP Code:
SELECT
post.*,post.username AS postusername,post.ipaddress AS ip,user.*,userfield.*,".iif($forum[allowicons],'icon.title as icontitle,icon.iconpath,','')."
attachment.attachmentid,attachment.filename,attachment.visible AS attachmentvisible,attachment.counter,
user.ma AS uma,user.hp AS uhp,user.pp AS upp,user.ap AS uap,items_options.pointfield,items_options.lesanestore,battle_options.namefield,battle_options.exprate,battle_options.privacy AS battleprivacy,items_user.*,battle_stats.*,rpg_race.name AS rpgracename,rpg_race.alignment AS rpgalignmentname,rpg_classf.name AS fclassname,
rpg_classf.folder AS fclassfolder,rpg_classm.name AS mclassname,rpg_classm.folder AS mclassfolder,rpg_element.name AS elename
".iif($avatarenabled,",avatar.avatarpath,NOT ISNULL(customavatar.avatardata) AS hascustomavatar,customavatar.dateline AS avatardateline","")."
FROM post, battle_options, items_options
".iif($forum[allowicons],'LEFT JOIN icon ON icon.iconid=post.iconid','')."
LEFT JOIN user ON user.userid=post.userid
LEFT JOIN userfield ON userfield.userid=user.userid
LEFT JOIN items_user ON items_user.userid=user.userid
LEFT JOIN battle_stats ON battle_stats.userid=user.userid
LEFT JOIN rpg_classf ON rpg_classf.id=user.rpgclass
LEFT JOIN rpg_classm ON rpg_classm.id=user.rpgclass
LEFT JOIN rpg_element ON rpg_element.elementid=user.element
LEFT JOIN rpg_race ON rpg_race.raceid=user.rpgrace AND rpg_race.alignmentid=user.alignment
".iif ($avatarenabled,"LEFT JOIN avatar ON avatar.avatarid=user.avatarid
LEFT JOIN customavatar ON customavatar.userid=user.userid","")."
LEFT JOIN attachment ON attachment.attachmentid=post.attachmentid
WHERE $postids
ORDER BY dateline $postorder
around line 420 of showthread.php.