I've made progress!!!
After going over the code of both the HTML and PHP page, I finally found out part of my problem, and I am hoping that you guys can help me fix the rest. As I said before, I was only getting the static images on my viewmember page, even if the settings were to show the modelviewer. There is a file called "armory.class.details.php" located at:
.../eqdkp/pluskernel/include/armory.class.details.php
After going over the page, I spotted the following code:
Code:
class ArmoryCharLoader
{
var $version = '1.2.0';
var $build = '2508200701';
var $links = array(
'eu' => 'http://eu.wowarmory.com/',
'us' => 'http://www.wowarmory.com/'
The problem with this code is that the 'us' site address listed is no longer valid. When Blizzard moved over to battle.net, the address became: "http://us.battle.net/wow/en/"
I changed the 'us' value in this file to "http://us.battle.net/wow/en/" and the modelviewer appeared on screen instead of the static images! HOWEVER, it doesn't show the armory modelviewer. It simply says: "Loading Error."
I assume this is because the correct path is not coded in properly somewhere. I have yet to find out where the path is set for the modelviewer and I'm hoping you guys can help me. Where do I set the correct address for the new version of the wowarmory in the pages to populate the modelviewer? The proper address for a character (I'll use mine as a sample) would be: "http://us.battle.net/wow/en/character/mannoroth/kallak/simple"
Any help?