NukeXchange Network

          

Nuke Sites Link Directory
Nuke Fixes · NukeForums · NukeZone Hosting · NukeUnited · Nuke Sites · Nuke Skins · NukeLance
Nuke Resources
 :: Home  :: Downloads  :: Your Account  :: Forums  :: Advertise :: 
Login or Register
Main Menu
General
 Main
 AvantGo
 Banner_Clients
 cfaq
 Donations
 Downloads
 Forums
 Members_List
 Private_Messages
 Search
 Stories_Archive
 Submit_News
 Surveys
 Topics
 Web_Links
 Your_Account

Your Account
 Login
 Register
 Lost Pass

Modules
Quick Links
· CMS Focus
· Domain Names
. Game Quest
· Learning Linux
. MateMaker
· NukeFixes
· NukeForums
· NukeLance
· Nuke Sites
· Nuke Skins
· NukeZone Hosting
. SearchDevil
Other Options

Download Resources
· Nuke Downloads
· Add a Link
· New Files
· Top Rated
· Most Popular

Web Site Resources
· Nuke Sites
· Add A Site
· New Sites
· Top Rated
· Most Popular

Support
· NukeZone Hosting
· NukeSkins.com
· NukeForums.com
· phpnuke.org
· NukeFixes.com
Information
NukeForums
·decompressing EN-Book-Nuke.tar.tar
·How to allow spaces/gaps/"-" in allowed usernames
·How to Setup PHPNUKE on win2k
·cannot save changes
·voting?
·Nuke forum picture problem
·How to change smtp port on wampserver and windows
·yet another 301 redirect problem
·Image display? - newbie
·php nuke help

read more...
Top10 Links
· 1: Nuke Forums
· 2: PHPNukeFiles
· 3: NukeSkins
· 4: Nuke Templates
· 5: EcomJunk
· 6: MDesign
· 7: Windows Installation: PHP
· 8: FLASH-FOR-NUKE
· 9: Dezina
· 10: Global Dream News Sharing Portal!
Site Visitors
User Login:

Nickname:
Password:
Security Code: Security Code
Type Security Code Here:

Members List Membership:
Latest: GiLli
Today: 2
Yesterday: 1
Overall: 15104

Visitation:
Guests: 533
Members: 1
Total: 534


You are Anonymous user. You can register for free by clicking here
Sponsor Links
Need to find your IP fast?
Need to find your IP fast?

NukeResources :: View topic - Patched 7.4 Problems
NukeResources Forum Index

NukeResources Forum Index -> Upgrading PHP-Nuke -> Patched 7.4 Problems Goto page 1, 2  Next
Post new topic  Reply to topic    View previous topic :: View next topic 
Patched 7.4 Problems
PostPosted: Fri Oct 15, 2004 1:07 pm Reply with quote
bigbwana
Resource Newbie
Resource Newbie
 
Joined: Oct 05, 2004
Posts: 24




I had 7.4 standard Php-nuke installed and running on my website and when I uploaded the Patched 7.4 version to it, all I get now is a blank white page. Any ideas why uploading it might toast my website?
I re-uploaded the Patched 7.4 files and tried again, same blank website.
I re-uploaded the old 7.4 files to the website, and it came back.
But!! Whenever I make a change in the admin area, like add a story or change a message, I do not get back to the admin page.. I get a blank page with this on it..
?> ?> break; } ?>


Any ideas?
View user's profile Send private message
PostPosted: Fri Oct 15, 2004 1:23 pm Reply with quote
chatserv
Site Admin
Site Admin
 
Joined: Apr 21, 2002
Posts: 1732
Location: Puerto Rico




Reupload your old admin files, make sure you upload them in ascii mode.

_________________
NukeResources | ScriptHeaven
View user's profile Send private message Visit poster's website
PostPosted: Fri Oct 15, 2004 1:48 pm Reply with quote
bigbwana
Resource Newbie
Resource Newbie
 
Joined: Oct 05, 2004
Posts: 24




Well I tried that, I also deleted the whole/admin folder on my server and re-uploaded it to my server, and now when I make a change in the administration area I get this..
?>

With out the
?> ?> break; } ?>

Like last time. Anything else I can try?
Another bg problem is that when you click on a banner I have on the website , it now shows the same ?> blank page rather then going to the advertisers website like it should... That is not good at all


Also, why did the patched 7.4 do that to the website do you think?
Thanks
View user's profile Send private message
PostPosted: Fri Oct 15, 2004 1:54 pm Reply with quote
chatserv
Site Admin
Site Admin
 
Joined: Apr 21, 2002
Posts: 1732
Location: Puerto Rico




The patched files should have not caused any blank pages, the one thing i can think of is your server running php as cgi in which case instead of blank pages you would get access denied messages.

_________________
NukeResources | ScriptHeaven
View user's profile Send private message Visit poster's website
PostPosted: Fri Oct 15, 2004 2:05 pm Reply with quote
bigbwana
Resource Newbie
Resource Newbie
 
Joined: Oct 05, 2004
Posts: 24




I know you know exactly what all the patched files do, I got my site back running on 7.4 standard again, but I really would feel better if I updated it to the patched version of yours. Do you feel it would be safe for me to try it again?
View user's profile Send private message
PostPosted: Tue Nov 02, 2004 11:28 am Reply with quote
n0manarmy
Resource Seeker
Resource Seeker
 
Joined: Nov 02, 2004
Posts: 2




I'm having the same problem as well.

I'm running phpnuke 7.4 standard on an unbuntu linux distro and when i install the update security patch i get nothing but a white page.

I've uploaded the files to the directory and same thing, white page

I've extracted the files directly on the server and copied them into the directory (i've triple checked my config file as well) and still get the same issue. I essentially need this patch so that i can use ulsoft's approve membership because i need to allow only a certain range of email addresses to register on my site.

Any help for the patch or another option besides Approve Membership would be great. THank you.
View user's profile Send private message
PostPosted: Tue Nov 02, 2004 4:59 pm Reply with quote
chatserv
Site Admin
Site Admin
 
Joined: Apr 21, 2002
Posts: 1732
Location: Puerto Rico




In mainfile.php find:
Code:
#############################################################
#--------------- Base64 sanitize by Waraxe -----------------
if(isset($admin))
{
   $admin = base64_decode($admin);
   $admin = addslashes($admin);
   $admin = base64_encode($admin);
}

if(isset($user))
{
   $user = base64_decode($user);
   $user = addslashes($user);
   $user = base64_encode($user);
}
#############################################################
}

Remove the last } so that it now looks like:
Code:
#############################################################
#--------------- Base64 sanitize by Waraxe -----------------
if(isset($admin))
{
   $admin = base64_decode($admin);
   $admin = addslashes($admin);
   $admin = base64_encode($admin);
}

if(isset($user))
{
   $user = base64_decode($user);
   $user = addslashes($user);
   $user = base64_encode($user);
}
#############################################################


I will correct this in the patches as soon as possible.

_________________
NukeResources | ScriptHeaven
View user's profile Send private message Visit poster's website
PostPosted: Wed Nov 03, 2004 4:33 pm Reply with quote
n0manarmy
Resource Seeker
Resource Seeker
 
Joined: Nov 02, 2004
Posts: 2




Thank you so very much, everythings working 100% now.
View user's profile Send private message
"access denied" after uploading 74 patch - php-cgi
PostPosted: Thu Nov 04, 2004 9:24 am Reply with quote
sadpanda
Resource Seeker
Resource Seeker
 
Joined: Nov 04, 2004
Posts: 5




chatserv wrote:
The patched files should have not caused any blank pages, the one thing i can think of is your server running php as cgi in which case instead of blank pages you would get access denied messages.


I am having this issue. I patched my 7.4 with the most recent 74 patches and now I cannot get into the admin panel and users cannot log-out (it's possible they can't log-in either, haven't tested that yet).

I get "access denied" when I try to log-in to admin.php
I checked the chmods and ran analyzer, to make sure everything was connecting
Tried different computers, OS, clearing cashes, etc

My server runs as php-cgi

Is there any fix for this? Should I go back to the unpatched version? I did not have any trouble running nuke as php-cgi before uploading the patches.

Please advise.
View user's profile Send private message
PostPosted: Thu Nov 04, 2004 10:38 am Reply with quote
chatserv
Site Admin
Site Admin
 
Joined: Apr 21, 2002
Posts: 1732
Location: Puerto Rico




You might need to change SCRIPT_NAME to PHP_SELF in the files

_________________
NukeResources | ScriptHeaven
View user's profile Send private message Visit poster's website
Which files would require this change?
PostPosted: Thu Nov 04, 2004 1:52 pm Reply with quote
dean
Resource Seeker
Resource Seeker
 
Joined: Apr 03, 2004
Posts: 6




Which files would require this change?
View user's profile Send private message
PostPosted: Thu Nov 04, 2004 3:42 pm Reply with quote
chatserv
Site Admin
Site Admin
 
Joined: Apr 21, 2002
Posts: 1732
Location: Puerto Rico




Most likely all admin files and admin.php

_________________
NukeResources | ScriptHeaven
View user's profile Send private message Visit poster's website
PostPosted: Thu Nov 04, 2004 3:52 pm Reply with quote
sadpanda
Resource Seeker
Resource Seeker
 
Joined: Nov 04, 2004
Posts: 5




chatserv wrote:
You might need to change SCRIPT_NAME to PHP_SELF in the files


Yes, I know now that SCRIPT_NAME won't work.
But, before I change all of these patch files...

I'm concerned about the MIGHT. Do you mean that IF this is your problem (because I think it is)... then definitely change to PHP_SELF or are you not sure about that?

And is it just about every file in the patch? eek.