Quote:
Originally Posted by juhler
I think he means:
How to change:
eu.wowarmory.com/guild-info.xml bla bla bla
to
eu.battle.net/wow/en/guild/
Im trying myself and have changed it every where I can find.
Now its giving me errors:
Deprecated: Assigning the return value of new by reference is deprecated in "BLABLABLA"/forum/includes/init.php on line 55 etc.
You know how to fix that ?
|
I would revert your changes to correct your error
mmm you mean the links?
well there are a couple of ways to do this.
The easiest is to change the Template files to not use the link from the DB. (remove $player[charurl], and replace it with the new url).
For example:
Code:
<a href="$player[charurl]" target="_blank">
becomes:
Code:
<a href="http://eu.battle.net/wow/en/character/$guild[realm]/$player[charname]/simple" target="_blank">
This is a quick short term fix, as an upgrade or reinstall would revert these changes
I am working on cleaning up all of my code and making it all non-server/locale specific. Once I get this completed i will email everything I have to Gryphon for his review.