| Author |
Message |
Raven
General


Joined: Mar 22, 2003
Posts: 5233
Location: USA
|
Posted:
Tue Aug 19, 2003 4:58 am |
  |
2 bugs have been present ever since 6.6 and are still in 6.9. In modules/Downloads/voteinclude.php and modules/Web_Links/voteinclude.php, this code is at the top
| Code: |
if (!eregi("index.php", $_SERVER["PHP_SELF"])) {
die("You can't access this file directly...");
} |
It needs to be changed to
| Code: |
if (!eregi("modules.php", $_SERVER["PHP_SELF"])) {
die("You can't access this file directly...");
} |
Without these changes the voting will not work! |
_________________ Those who hear not the music think the dancers mad.
Raven Web Hosting|My Scripts & Stuff |
|
    |
 |
chatserv
General


Joined: Jan 12, 2003
Posts: 3128
Location: Puerto Rico
|
Posted:
Tue Aug 19, 2003 6:06 am |
  |
I take it the latest service pack did not make it into 6.9? |
_________________ Feed a man a fish and you feed him for a day. Teach a man to fish and you feed him for a lifetime.
ScriptHeaven | NukeResources |
|
    |
 |
Raven
General


Joined: Mar 22, 2003
Posts: 5233
Location: USA
|
Posted:
Tue Aug 19, 2003 6:23 am |
  |
|
    |
 |
chris-au
Elite Nuker


Joined: Jan 31, 2003
Posts: 717
|
Posted:
Sat Aug 23, 2003 10:04 pm |
  |
What I see:
FROM Downloads/voteinclude.php VERSION 6.9:
// bug fixed supplied by Nuke Cops member 'dirtbag'
// see http://www.nukecops.com/postlite6451-.html
if (!eregi("modules.php", $_SERVER["PHP_SELF"])) {
die("You can't access this file directly....");
}
FROM Web_Links/voteinclude.php VERSION 6.9:
// bug fixed supplied by Nuke Cops member 'dirtbag'
// see http://www.nukecops.com/postlite6451-.html
if (!eregi("modules.php", $_SERVER["PHP_SELF"])) {
die("You can't access this file directly....");
} |
_________________ Chris
|
|
    |
 |
Raven
General


Joined: Mar 22, 2003
Posts: 5233
Location: USA
|
Posted:
Sun Aug 24, 2003 3:55 am |
  |
|
    |
 |
chris-au
Elite Nuker


Joined: Jan 31, 2003
Posts: 717
|
Posted:
Sun Aug 24, 2003 1:19 pm |
  |
| Raven wrote: |
2 bugs have been present ever since 6.6 and are still in 6.9. In modules/Downloads/voteinclude.php and modules/Web_Links/voteinclude.php, this code is at the top
| Code: |
if (!eregi("index.php", $_SERVER["PHP_SELF"])) {
die("You can't access this file directly...");
} |
It needs to be changed to
| Code: |
if (!eregi("modules.php", $_SERVER["PHP_SELF"])) {
die("You can't access this file directly...");
} |
Without these changes the voting will not work! |
You said they are STILL in 6.9
I say, NOT in my copy of 6.9. They were already fixed! |
_________________ Chris
|
|
    |
 |
Raven
General


Joined: Mar 22, 2003
Posts: 5233
Location: USA
|
Posted:
Sun Aug 24, 2003 1:45 pm |
  |
I have a copy from FB's Club. The bugs were not fixed in his 'official' release. That's what I was referring to. If you got a copy from the Club and yours is changed then he has fixed it since I d/l mine. |
_________________ Those who hear not the music think the dancers mad.
Raven Web Hosting|My Scripts & Stuff |
|
    |
 |
chris-au
Elite Nuker


Joined: Jan 31, 2003
Posts: 717
|
Posted:
Sun Aug 24, 2003 3:44 pm |
  |
I got an email from, I think, Memlabs.net that invited me to download.
I did. I donot know who they are, I think I downloaded some add-ons from there in the past.
It seems, I must have an un-authoised copy but it is a copy with what seems to have all the prblems fixed.
I just downloaded for curiousity sake and not using it. 6.5 with the fixes is good enough for me. |
_________________ Chris
|
|
    |
 |
|
|