| Author |
Message |
mikem
Theme Guru


Joined: Jan 13, 2003
Posts: 1582
Location: Corn fields of Indiana
|
Posted:
Mon Jan 13, 2003 9:26 am |
  |
Ok did I miss something? ..took me a while to find ya'll.,..but hey..what happened to the Forums over at phpnuke.org?
They're gone..outa there,history?
That is really not a good sign for Nuke 6.5 now is it?...I guess I better stop my theme conversions for 6.5 until an update of the status of what the heck is going on is released to the general public...
mikem
Oh Zhen...you ought to update your Welcome to Read me first thing...a lot of the links point to phpnuke's forums..which..um aren't there..blah.
 |
|
|
   |
 |
chatserv
General


Joined: Jan 12, 2003
Posts: 3128
Location: Puerto Rico
|
Posted:
Mon Jan 13, 2003 9:48 am |
  |
First off hiyas Mikem, good to hear from you again, as for phpnuke.org's forums if you recall, there were some performance issues with it slowing down the site so FB seems to have disabled it for now til these issues are solved, we'll look into the welcome message's links. |
_________________ 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 |
|
    |
 |
mikem
Theme Guru


Joined: Jan 13, 2003
Posts: 1582
Location: Corn fields of Indiana
|
Posted:
Mon Jan 13, 2003 9:50 am |
  |
| chatserv wrote: |
| First off hiyas Mikem, good to hear from you again, as for phpnuke.org's forums if you recall, there were some performance issues with it slowing down the site so FB seems to have disabled it for now til these issues are solved, we'll look into the welcome message's links. |
Ahh thanks bud..I figured that was the reson..but it kinda scared me when I visited and there was no notification, but the Forums were down..at least it's still WIP.
mikem |
|
|
   |
 |
ArtificialIntel

Joined: Jan 31, 2004
Posts: -88
|
Posted:
Mon Jan 13, 2003 9:51 am |
  |
yeah, we noticed
I was halfway though writing a reply to somebody about summt that they wanted to know when FB shut them down.
As far as I know it was because for some reason the forums kept killing the site off. At least once a day from my experience. Not to mention them slowing the site down to a crawl.
We're still sorting things out, but I'm sure that all the links etc. will be sorted soon.
Spread the word - we're here
ArtificialIntel |
|
|
   |
 |
Zhen-Xjell
Nuke Cops Founder


Joined: Nov 14, 2002
Posts: 5939
|
Posted:
Mon Jan 13, 2003 11:05 am |
  |
Hi'ya mikem, its good to see you over here. Thanks for the reminder on the links, I'll go ahead and remove them from the welcome thread then since they point to no where. |
_________________ Paul Laudanski, Microsoft MVP Windows-Security
CastleCops: [de] [en] [wiki] |
|
     |
 |
mikem
Theme Guru


Joined: Jan 13, 2003
Posts: 1582
Location: Corn fields of Indiana
|
Posted:
Wed Jan 15, 2003 8:03 am |
  |
|
   |
 |
ArtificialIntel

Joined: Jan 31, 2004
Posts: -88
|
Posted:
Wed Jan 15, 2003 8:19 am |
  |
I'm gonna implement that on The Sci-Factor streight away.
           
ArtificialIntel |
|
|
   |
 |
chatserv
General


Joined: Jan 12, 2003
Posts: 3128
Location: Puerto Rico
|
Posted:
Wed Jan 15, 2003 8:56 am |
  |
I seem to have a different functions.php file on mine line 696 differs from what is given in that fix. I have similar code in the bblogin function of that file. |
_________________ 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 |
|
    |
 |
ArtificialIntel

Joined: Jan 31, 2004
Posts: -88
|
Posted:
Wed Jan 15, 2003 8:59 am |
  |
I just changed the only occurance of that bit of code that I could find.
Didn't pay any attention to line numbers
ArtificialIntel |
|
|
   |
 |
Zhen-Xjell
Nuke Cops Founder


Joined: Nov 14, 2002
Posts: 5939
|
Posted:
Wed Jan 15, 2003 9:38 am |
  |
For some reason bbtonuke and phpnuke.org both aren't loading up for me right now. Any other site I go to is fine except those. |
_________________ Paul Laudanski, Microsoft MVP Windows-Security
CastleCops: [de] [en] [wiki] |
|
     |
 |
ArtificialIntel

Joined: Jan 31, 2004
Posts: -88
|
Posted:
Wed Jan 15, 2003 9:40 am |
  |
phpnuke.org's been down since about 11am GMT
bbtonuke's been down for about half hour or so for some reason
ArtificialIntel |
|
|
   |
 |
Zhen-Xjell
Nuke Cops Founder


Joined: Nov 14, 2002
Posts: 5939
|
Posted:
Wed Jan 15, 2003 9:42 am |
  |
Hope its not due to the forums...  |
_________________ Paul Laudanski, Microsoft MVP Windows-Security
CastleCops: [de] [en] [wiki] |
|
     |
 |
ArtificialIntel

Joined: Jan 31, 2004
Posts: -88
|
Posted:
Wed Jan 15, 2003 9:56 am |
  |
I think it was for phpnuke.org cause I was on there answering a few posts (all of which had an ad for this site in them) and it just slowed down fairly quickly then stopped loading pages.
The bug fix works though, I've done it to my site. Here it is:
In /includes/functions.php.....
| Code: |
$sql = "SELECT u.*, s.*
FROM " . SESSIONS_TABLE . " s, " . USERS_TABLE . " u
WHERE s.session_id = '$session_id'
AND s.session_ip = '$user_ip'"; |
It's the first sql thingy in function bblogin
change it to
| Code: |
$sql = "SELECT s.*
FROM " . SESSIONS_TABLE . " s
WHERE s.session_id = '$session_id'
AND s.session_ip = '$user_ip'"; |
ArtificialIntel |
|
|
   |
 |
Zhen-Xjell
Nuke Cops Founder


Joined: Nov 14, 2002
Posts: 5939
|
Posted:
Wed Jan 15, 2003 10:21 am |
  |
Ok, I've made the change right now. |
_________________ Paul Laudanski, Microsoft MVP Windows-Security
CastleCops: [de] [en] [wiki] |
|
     |
 |
mikem
Theme Guru


Joined: Jan 13, 2003
Posts: 1582
Location: Corn fields of Indiana
|
Posted:
Wed Jan 15, 2003 10:48 am |
  |
| Zhen-Xjell wrote: |
Hope its not due to the forums...  |
bbtonuke is up, but phpnuke is still down
mikem |
|
|
   |
 |
|
|