Portal Themes, PHPnuke Themes and PostNuke themes Themes Home Page Profile Free Nuke theme Downloads Nuke theme Support Forums Nuke Themes Store
spacer image spacer image
Featured
Call of Duty 4 Nuke Theme

Call of Duty 4 Nuke Theme

Call of Duty 4 PHPNuke Theme, Call of Duty 4 PostNuke Theme, Call of Duty 4 Evo Theme, Call of Duty ...

$15.00
Enter Store ]
spacer image
Main Menu
spacer image
Site Status
spacer image Welcome Guest
Join us!
spacer image
spacer imagespacer imagespacer image
spacer image
Registration is free and gives full access to site
spacer image
spacer image Register
spacer image Login:
User:

spacer image
Password:

spacer image
Remember me
spacer image
spacer imageMembers:
Last: Today New:0
Last: Yesterday:0
Last: Total:7536
Last: Last:
maxfoot
Members: Online
Members: Members:0
Guests: Guests:36
Total: Total:36
spacer image Online Members
No online members
spacer image
Past News
Older articles
spacer image


Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Author Message
ModernMerlinOffline
Post subject: PT-EQ2 Theme  PostPosted: Jan 02, 2009 - 07:17 PM



Joined: Dec 08, 2008
Posts: 23

Status: Offline
Everything was working fine until I installed a new block. Approve_Members6.1.6-8.0 Now the recruit page comes up like this

http://guardiansoflight.co.uk/modules.php?name=Application

Any help would be greatly appreciated!

MM
 
 View user's profile Send private message  
Reply with quote
marsOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Jan 02, 2009 - 11:02 PM
Site Admin


Joined: Aug 15, 2004
Posts: 4277

Status: Offline
Does it work if you disable the block?
If so can you post the contents of the block here or email it to me?
 
 View user's profile Send private message  
Reply with quote
ModernMerlinOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Jan 16, 2009 - 10:22 PM



Joined: Dec 08, 2008
Posts: 23

Status: Offline
It works everywhere BUT in that very block....

The block contents are:

<?php
/*
==========================================
PHP-NUKE: Guild Recruitment Block for EQ2
Version 1
==========================================
Copyright (c) 2007 by Hawnted - http://www.nemesysguild.com

Thanks to Arioch - http://www.black-blades.org
and
Thanks to Kenjioba - http://www.guildsolidarity.com for the original design

This program is free software. You can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation
==========================================
*/

// Set this to the path to your recruitment page
$recruitment = "modules.php?name=Application";

// This blocks anyone from accessing the file directly
if (eregi("block-Recruitment.php",$_SERVER['PHP_SELF'])) {
Header("Location: index.php");
die();
}

global $db, $user, $cookie, $prefix, $username;

$sql="SELECT * FROM recruitment";
$result = $db->sql_query($sql);
$i=0;

$status=mysql_result($result,$i,"status");
$berserker=mysql_result($result,$i,"berserker");
$guardian=mysql_result($result,$i,"guardian");
$sk=mysql_result($result,$i,"sk");
$bruiser=mysql_result($result,$i,"bruiser");
$warlock=mysql_result($result,$i,"warlock");
$wizard=mysql_result($result,$i,"wizard");
$coercer=mysql_result($result,$i,"coercer");
$necromancer=mysql_result($result,$i,"necromancer");
$inquisitor=mysql_result($result,$i,"inquisitor");
$fury=mysql_result($result,$i,"fury");
$warden=mysql_result($result,$i,"warden");
$defiler=mysql_result($result,$i,"defiler");
$assasin=mysql_result($result,$i,"assasin");
$dirge=mysql_result($result,$i,"dirge");
$troubador=mysql_result($result,$i,"troubador");
$brigand=mysql_result($result,$i,"brigand");

$content = "<table border=\"0\" cellpadding=\"1\" cellspacing=\"0\" width=\"100%\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td height=\"30\"><table border=\"0\" cellpadding=\"1\" cellspacing=\"0\" width=\"100%\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td align=\"center\"><font class=\"menuhead\"><strong>Current Class Desirability</strong></font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";
$content .= " </tr>";
$content .= " <tr>";
$content .= " <td ><table border=\"0\" cellpadding=\"4\" cellspacing=\"0\" width=\"100%\">";
$content .= " <tbody>";
$content .= " <tr>";

if ($status == "Open"){
$content .= " <td><div align=\"center\"><font class=\"content\">We are currently looking for new members of the following classes: </font>";
} else{ //Closed
$content .= " <td><div align=\"center\"><font class=\"content\"><b>Recruitment is currently <font color=\"#ff0000\">CLOSED!</font></b></font>";
}

$content .= " <hr>";
$content .= " <table id=\"table2\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table3\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/assasin.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Assasin:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($assasin == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($assasin == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($assasin == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($assasin == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}


$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table10\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/berserker.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Berserker:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($berserker == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($berserker == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($berserker == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($berserker == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}

$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table10\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/brigand.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Brigand:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($brigand == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($brigand == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($brigand == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($brigand == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}

$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table5\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/bruiser.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Bruiser:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($bruiser == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($bruiser == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($bruiser == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($bruiser == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}
$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table8\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/coercer.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Coercer:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($coercer == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($coercer == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($coercer == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($coercer == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}
$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table10\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/defiler.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Defiler:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($defiler == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($defiler == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($defiler == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($defiler == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}


$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table10\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/dirge.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Dirge:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($dirge == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($dirge == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($dirge == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($dirge == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}

$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table10\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/fury.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Fury:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($fury == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($fury == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($fury == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($fury == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}

$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table3\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/guardian.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Guardian:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($guardian == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($guardian == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($guardian == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($guardian == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}

$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table10\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/inquisitor.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Inquisitor:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($inquisitor == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($inquisitor == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($inquisitor == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($inquisitor == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}


$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table9\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/necromancer.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Necro:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($necromancer == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($necromancer == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($necromancer == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($necromancer == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}


$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table4\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/shadowknight.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">SK:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($sk == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($sk == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($sk == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($sk == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}

$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table10\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/troubador.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Troubador:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($troubador == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($troubador == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($troubador == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($troubador == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}

$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table10\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/warden.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Warden:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($warden == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($warden == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($warden == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($warden == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}




$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table6\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/warlock.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Warlock:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($warlock == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($warlock == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($warlock == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($warlock == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}

$content .= " </tr>";
$content .= " <tr>";
$content .= " <td colspan=\"2\"><table id=\"table7\" border=\"0\">";
$content .= " <tbody>";
$content .= " <tr>";
$content .= " <td><font class=\"content\"><img src=\"images/class_images/wizard.png\" border=\"0\"></font></td>";
$content .= " <td><font class=\"content\">Wizard:</font></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";

if ($wizard == "High"){
$content .= " <td><font class=\"content\"><b><font color=\"#00CC00\">High</font></b></font></td>";
} else if ($wizard == "Medium"){
$content .= " <td><font class=\"content\"><b><font color=\"#FFCC00\">Medium</font></b></font></td>";
} else if ($wizard == "Low"){
$content .= " <td><font class=\"content\"><b><font color=\"#FF6600\">Low</font></b></font></td>";
} else if ($wizard == "Closed"){
$content .= " <td><font class=\"content\"><b><font color=\"#ff0000\">Closed</font></b></font></td>";
}


$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table>";
$content .= " <a target=\"_self\" href=\"$recruitment\">";
$content .= " <hr>";
$content .= " <h4><strong>Recruitment Page</a></strong></h4></div></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= " </table></td>";
$content .= " </tr>";
$content .= " </tbody>";
$content .= "</table>";

?>
 
 View user's profile Send private message  
Reply with quote
ModernMerlinOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Jan 17, 2009 - 09:13 PM



Joined: Dec 08, 2008
Posts: 23

Status: Offline
Was just wondering if you had a chance to look at this?

MM
 
 View user's profile Send private message  
Reply with quote
marsOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Jan 18, 2009 - 02:54 PM
Site Admin


Joined: Aug 15, 2004
Posts: 4277

Status: Offline
Not yet, is this a block or a module?
And where did it come from?
 
 View user's profile Send private message  
Reply with quote
ModernMerlinOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Jan 18, 2009 - 11:29 PM



Joined: Dec 08, 2008
Posts: 23

Status: Offline
Its both...

And its an everquest module from the EQ designers. It was working until I added a module for denying or accepting memberships to the site.
 
 View user's profile Send private message  
Reply with quote
ModernMerlinOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Jan 22, 2009 - 08:43 AM



Joined: Dec 08, 2008
Posts: 23

Status: Offline
*bump*
 
 View user's profile Send private message  
Reply with quote
marsOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Jan 22, 2009 - 11:08 AM
Site Admin


Joined: Aug 15, 2004
Posts: 4277

Status: Offline
This block works fine, where is the code that it goes to when you click on the links in it?
That is what is messed up..
 
 View user's profile Send private message  
Reply with quote
ModernMerlinOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Jan 22, 2009 - 07:54 PM



Joined: Dec 08, 2008
Posts: 23

Status: Offline
What is your email address? I can send it to you... Or if you want I can create a login to the FTP if that would be easier.

MM
 
 View user's profile Send private message  
Reply with quote
marsOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Jan 22, 2009 - 10:28 PM
Site Admin


Joined: Aug 15, 2004
Posts: 4277

Status: Offline
we can start with the email as I will test it on my local setup

mikemaynard AT ccnyi DOT com
 
 View user's profile Send private message  
Reply with quote
ModernMerlinOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Jan 22, 2009 - 11:13 PM



Joined: Dec 08, 2008
Posts: 23

Status: Offline
Sent
 
 View user's profile Send private message  
Reply with quote
ModernMerlinOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Jan 30, 2009 - 09:13 PM



Joined: Dec 08, 2008
Posts: 23

Status: Offline
anything yet? Smile
 
 View user's profile Send private message  
Reply with quote
marsOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Jan 31, 2009 - 02:36 PM
Site Admin


Joined: Aug 15, 2004
Posts: 4277

Status: Offline
No sorry, still trying to find out why it is doing that.
It is a very old module and not very well written...
 
 View user's profile Send private message  
Reply with quote
ModernMerlinOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Feb 02, 2009 - 08:22 PM



Joined: Dec 08, 2008
Posts: 23

Status: Offline
Ok thanks!
 
 View user's profile Send private message  
Reply with quote
ModernMerlinOffline
Post subject: RE: PT-EQ2 Theme  PostPosted: Feb 19, 2009 - 04:42 AM



Joined: Dec 08, 2008
Posts: 23

Status: Offline
Just checking in...
 
 View user's profile Send private message  
Reply with quote
Display posts from previous:     
Jump to:  
All times are GMT - 5 Hours
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Powered by PNphpBB2 © 2003-2006 The PNphpBB Group
Credits
spacer image spacer image

Welcome to www.PortalThemes.com, Your #1 Source for

Zikula Themes

,

PHP-Nuke themes

,

MD-Pro Themes

,

Nuke Evolution Themes

,

Platinum Nuke Themes

,

Xanthia Themes

,

AutoThemes and

Joomla Templates
World of Warcraft and Blizzard Entertainment are all trademarks or registered trademarks of Blizzard Entertainment in the United States and/or other countries. These terms and all related materials, logos, and images are copyright Blizzard Entertainment. This site is in no way associated with or endorsed by Blizzard Entertainment
SiteMap SiteMap 2 SiteMap 3