| Author |
Message |
Immortal
Guest

|
Posted:
Tue Jun 14, 2005 5:08 pm |
|
Hello
I would like to say VERY NICE JOB on the map manager.
I have not had no errors with it so far, i have uploaded a map, and downloaded a map from my site using your "MapManager1.0-7.6".
I am using phpnuke Platium and using "MapManager1.0-7.6".
And the problem i am having is with the Random Map BLOCK in your download section.
When i set the block up, my webpage dont want to load up for some reason, but when i remove the block, my website loads up fine.
Has anyone else encounted this problem and solved it?
Any help is apprieciated
Many Thanks in advance
Immortal |
| |
|
|
 |
Ghost

Joined: Jan 08, 2005
Posts: 55
Location: Puyallup, Washington
|
Posted:
Tue Jun 14, 2005 11:07 pm |
|
Open block-Random_Map.php
Find
| Code: |
if ( !defined('NUKE_FILE') ) {
Header("Location: ../index.php");
die();
} |
Replace with
| Code: |
//if ( !defined('NUKE_FILE') ) {
// Header("Location: ../index.php");
// die();
//} |
Then Find
| Code: |
//if (stristr($_SERVER['SCRIPT_NAME'], "block-Random_Map.php")) {
// Header("Location: ../index.php");
// die();
//} |
Replace with
| Code: |
if (stristr($_SERVER['SCRIPT_NAME'], "block-Random_Map.php")) {
Header("Location: ../index.php");
die();
} |
Please lets us know if this works for you...I have tested it on my crappy platinum site and it works like a charm.
Ghost |
| |
|
|
 |
immortal

Joined: Jun 15, 2005
Posts: 1
|
Posted:
Wed Jun 15, 2005 4:29 am |
|
Ghost
THANK YOU
It works a treat.. I am very apreitiated for your time and effort in solving this and a fast response too.
Thank you
Immortal |
| |
|
|
 |
|
|