http://joomlawowguilddeath
Main Topics
Browse All Topicsi currently use the previous version of this module http://code.google.com/p/j
on my phpnuke site http://defendersguild.com but now i need to get the update for the DK class does anyone know how to port a joomla module to phpnuke so i can use the updated version?
Thanks in advance.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
http://joomlawowguilddeath
Business Accounts
Answer for Membership
by: demo7upPosted on 2009-10-08 at 11:45:04ID: 25528700
I was able to do it being impatient i just started ripping apart the code and found that i was set up to auto pull data from the db.
knight.goo glecode.co m/files/ mo d_recruit- DK-1.3.0.z ip
tment/".st rtolower($ name)"_sma ll.gif\" height=\"25\" width=\"25\" border=\"0\"></font></td>";
tment/".st rtolower($ name)".png \" height=\"25\" width=\"25\" border=\"0\"></font></td>";
So all you have to do is add the death knight class to the recruitment_classes table in the mysql database and upload the image pack which i got from http://joomlawowguilddeath
After you upload the images rename them so they can have lowercase letters so it can look like this
eg. druid.png instead of Druid.png
The second thing you have to do is go to your blocks folder and edit the file
request_form.php
Find the line (around line 81) and change it from
$content .= " <td><font class=\"content\"><img src=\"images/blocks/Recrui
to
$content .= " <td><font class=\"content\"><img src=\"images/blocks/Recrui
after that go to Module / Application and edit the request_form.php file
around line 636 find echo " <option value=\"9\""; if($selected == 9) echo " selected=\"selected\""; echo ">Paladin</option>\n";
add this to the line below
echo " <option value=\"10\""; if($selected == 10) echo " selected=\"selected\""; echo ">Death Knight</option>\n";
and i think it should be it.