Clan Adverts

DarkForge Gaming

www.clan-themes.co.uk :: View topic - Clan Roster Module v1.0

 Welcome To Clan Themes 

As the board grows please remember the Search Option and we hope you find our community useful.

We also monitor Private Messages to stop members from abusing our sites system.
If you are asking for assistance please provide your site link and nuke version, Thanks.

Clan Roster Module v1.0
Goto page Previous  1, 2, 3, 4  Next

37 Replies / 14056 Views


Post new topic   Reply to topic  

   www.clan-themes.co.uk Forum Index » Our Released Scripts

View previous topic :: View next topic


floppy
Reputation: 1794.6
votes: 10
Local time: 3:15 PM
Location: Jackson Mississippi
usa.gif

Status: Offline
2.77 posts per day
Medals: 1 (View more...)
Dedicated User (Amount: 1)
Clan Themes Scripts/Coder
Clan Themes Scripts/Coder
Joined: Nov 14, 2006
Last Visit: 01 Dec 2008
Posts: 2074
Points: 4343 

View user's profileSend private messageVisit poster's website Reply with quote

Raveneise
Reputation: 461.6
Local time: 6:15 AM


Status: Offline
0.02 posts per day
Medals: 0

Joined: Feb 05, 2007
Last Visit: 19 Feb 2007
Posts: 12
Points: 250 

Post Posted: Mon Feb 12, 2007 6:11 pm   

Yes there is, you click on the module in the menu and it says: You can't access this file directly... because my site is patched to 3.1 and the module isn't.

First step in making a module comliant with 3.1 is to change this:

if (!eregi("modules.php", $_SERVER["PHP_SELF"])) { die("You can't access this file directly..."); }

To this:

if (!defined('MODULE_FILE')) { die ("You can't access this file directly..."); }

If that was done, the You can't access this file directly... would not appear and you would continue to make the remaining changes.
 

 
View user's profileSend private message Reply with quote

floppy
Reputation: 1794.6
votes: 10
Local time: 3:15 PM
Location: Jackson Mississippi
usa.gif

Status: Offline
2.77 posts per day
Medals: 1 (View more...)
Dedicated User (Amount: 1)
Clan Themes Scripts/Coder
Clan Themes Scripts/Coder
Joined: Nov 14, 2006
Last Visit: 01 Dec 2008
Posts: 2074
Points: 4343 

View user's profileSend private messageVisit poster's website Reply with quote




Raveneise
Reputation: 461.6
Local time: 6:15 AM


Status: Offline
0.02 posts per day
Medals: 0

Joined: Feb 05, 2007
Last Visit: 19 Feb 2007
Posts: 12
Points: 250 

Post Posted: Mon Feb 12, 2007 6:21 pm   

Alright, I'll let him know. I'm not into the clan thing, I'm just a designer helping my little brother out. If you want I would be happy to make your modules compliant with patches and versions of Nuke so you can expand your products you offer and versions of them.
 

 
View user's profileSend private message Reply with quote

floppy
Reputation: 1794.6
votes: 10
Local time: 3:15 PM
Location: Jackson Mississippi
usa.gif

Status: Offline
2.77 posts per day
Medals: 1 (View more...)
Dedicated User (Amount: 1)
Clan Themes Scripts/Coder
Clan Themes Scripts/Coder
Joined: Nov 14, 2006
Last Visit: 01 Dec 2008
Posts: 2074
Points: 4343 

View user's profileSend private messageVisit poster's website Reply with quote

gacayon
Reputation: 461.4
Local time: 6:15 AM


Status: Offline
0.00 posts per day
Medals: 0

Joined: Feb 11, 2007
Last Visit: 18 Feb 2007
Posts: 1
Points: 250 

View user's profileSend private message Reply with quote




Ped
Reputation: 336.9
votes: 17
Local time: 9:15 PM
Location: Great British Empire
uk.gif

Status: Offline
2.35 posts per day
Medals: 2 (View more...)
Forums MoD (Amount: 1)
Clan Themes Theme Guru
Clan Themes Theme Guru
Joined: Nov 13, 2006
Last Visit: 01 Dec 2008
Posts: 1765
Points: 15739 

Post Posted: Tue Feb 13, 2007 8:54 am   

gacayon wrote:
Floppy,

Did you get my message regarding the corrupt download I was getting? I need to get a fresh copy. Unfortionaty at this point in time, I have nothing.

Kindest Regards,


I emailed you last night, just email me ped@clan-themes.co.uk well sort it out, the problem with the shop has been fixed
 

 
View user's profileSend private messageSend e-mailVisit poster's website Reply with quote

Raveneise
Reputation: 461.6
Local time: 6:15 AM


Status: Offline
0.02 posts per day
Medals: 0

Joined: Feb 05, 2007
Last Visit: 19 Feb 2007
Posts: 12
Points: 250 

Post Posted: Tue Feb 13, 2007 4:42 pm   

One thing is don't test on 3.2 patch. It wasn't done right and was the only reason 3.3 was released.. to fix the 3.2 problems. Testing on 3.3 is okay, but 3.1 is the best patch job.. the newer ones were attempts at changing too many things for security and making more problems in the process. Though 3.3 is a vast improvement of 3.2, the 3.1 patch takes care of everything and there' realy isn't a need for anything else if you run Sentinel. If you need a 3.1 patched version of Nuke, grab it from https://sourceforge.net/project/showfiles.php?group_id=135757&package_id=150099https://sourceforge.net/project/showfiles.php?group_id=135757&package_id=150099

It's Nuke Scripts Source Forge section with all their stuff and you'll see Nuke versions patched to various patch versions. Grab the 7.6 patched to 3.1, best way to test.

Here's what you need to do for modules:

Code:
Making Modules Compliant to Nuke Patched 3.1

OPEN modules/ALL_MODULES/*.php:
Note: The actual code might vary depending on the author but the below should give you a clear idea.
FIND:
if (!eregi("modules.php", $_SERVER["PHP_SELF"])) { die("You can't access this file directly..."); }
REPLACE, WITH:
if (!defined('MODULE_FILE')) { die ("You can't access this file directly..."); }
OPEN modules/ALL_MODULES/index.php:
Note: It?s possible that you will find the below changes not only in the index.php file. Check the other files
as well to be sure you change all of them.
FIND:
$index = 1;
OR:
$index=1;
OR:
$index =1;
REPLACE, WITH:
define('INDEX_FILE', true);
FIND:
if ($module == 1) {
REPLACE, WITH:
if (defined('MODULE_FILE')) {
FIND:
if ($header == 1) {
REPLACE, WITH:
if (defined('NUKE_HEADER')) {
FIND:
if ($footer == 1) {
REPLACE, WITH:
if (defined('NUKE_FOOTER')) {
OPEN modules/ALL_MODULES/admin/*.php:
FIND:
if (!eregi("admin.php", $_SERVER['PHP_SELF'])) { die ("Access Denied"); }
REPLACE, WITH:
if (!defined('ADMIN_FILE')) { die ("Access Denied"); }


If you add any blocks to the next release then do this to them:

Code:
Making Blocks Compliant to Nuke Patched 3.1

OPEN blocks/block-*.php:
Note: The actual code might vary depending on the author but the below should give you a clear idea. If the below FIND is missing all together, you can ADD it just AFTER <?php
FIND:
if (eregi("block-Some_Name.php",$_SERVER[PHP_SELF])) { Header("Location: ../index.php"); die(); }
REPLACE, WITH:
if ( !defined('BLOCK_FILE') ) { Header("Location: ../index.php"); die(); }


For admin files:

Code:

Making Admin Files Compliant to Nuke Patched 3.1

OPEN admin/case/*.php, admin/links/*.php & admin/modules/*.php:
Note: The actual code might vary depending on the author but the below should give you a clear idea.
FIND:
if (!eregi("admin.php", $_SERVER['PHP_SELF'])) { die ("Access Denied"); }
REPLACE, WITH:
if (!defined('ADMIN_FILE')) { die ("Access Denied"); }
 

 
View user's profileSend private message Reply with quote

floppy
Reputation: 1794.6
votes: 10
Local time: 3:15 PM
Location: Jackson Mississippi
usa.gif

Status: Offline
2.77 posts per day
Medals: 1 (View more...)
Dedicated User (Amount: 1)
Clan Themes Scripts/Coder
Clan Themes Scripts/Coder
Joined: Nov 14, 2006
Last Visit: 01 Dec 2008
Posts: 2074
Points: 4343 

View user's profileSend private messageVisit poster's website Reply with quote




Raveneise
Reputation: 461.6
Local time: 6:15 AM


Status: Offline
0.02 posts per day
Medals: 0

Joined: Feb 05, 2007
Last Visit: 19 Feb 2007
Posts: 12
Points: 250 

Post Posted: Tue Feb 13, 2007 7:38 pm   

Will work from 2.9+ patches, but you should tell everyone in the release to get their sites to at least 3.1 or 3.3. No 2.9 or 3.0 and no 3.2.
 

 
View user's profileSend private message Reply with quote

floppy
Reputation: 1794.6
votes: 10
Local time: 3:15 PM
Location: Jackson Mississippi
usa.gif

Status: Offline
2.77 posts per day
Medals: 1 (View more...)
Dedicated User (Amount: 1)
Clan Themes Scripts/Coder
Clan Themes Scripts/Coder
Joined: Nov 14, 2006
Last Visit: 01 Dec 2008
Posts: 2074
Points: 4343 

View user's profileSend private messageVisit poster's website Reply with quote

Raveneise
Reputation: 461.6
Local time: 6:15 AM


Status: Offline
0.02 posts per day
Medals: 0

Joined: Feb 05, 2007
Last Visit: 19 Feb 2007
Posts: 12
Points: 250 

Post Posted: Tue Feb 13, 2007 9:30 pm   

Nice, I'll be getting it. Any word on when it will be released? I have to wait until I get a new bank account opened though. I have the cash in my paypal, just can't transfer without the account.
 

 
View user's profileSend private message Reply with quote



Post new topic   Reply to topic  
   www.clan-themes.co.uk Forum Index » Our Released Scripts


 
37 Replies / 14056 Views
Page 2 of 4
All times are GMT
Goto page Previous  1, 2, 3, 4  Next
Display posts from previous:   
 
Jump to: