Hi to all...has been relased the new Fix Pack for Nuke 7.3 my question is...
....now i have finish to built mi site (so i have edited most of the phph files inside my Nuke root)....so how can i apply this new patch without loose any configuration/modification ?????
....i suppose that exist also a 1° fix patch (hehehehe....if there is a 2° there must be a 1° no??)....should i install first the 1° one???....qhere can i find it??'
......sorry but...thiking that i have to loose all the modifications/personalizations that i have made to my php files make me crazy.....
Joined: May 02, 2003 Posts: 1396 Location: Puerto Rico
Posted:
Wed Jun 09, 2004 11:49 am
The patch includes 2 text files that tell you what to edit on your files if you wish to manually edit them and the article about the release points you to forum posts that describe other changes.
1-On all files listed in fixlist.txt find:
, $_SERVER['PHP_SELF'])) {
or:
,$_SERVER[PHP_SELF])) {
or:
,$_SERVER['PHP_SELF'])) {
or:
, $_SERVER["PHP_SELF"])) {
change to:
, $_SERVER['SCRIPT_NAME'])) {
In the case of the admin/links folder files you will need to add the following after the file credits:
if (!eregi("admin.php", $_SERVER['SCRIPT_NAME'])) { die ("Access Denied"); }
I do not recommend a search & replace of PHP_SELF to SCRIPT_NAME
Open Nuke's main index.php file and find:
$_SERVER['PHP_SELF'] = "modules.php";
replace with:
$_SERVER['SCRIPT_NAME'] = "modules.php";
....so you suggest to open every php files on my nuke and apply the changes manually no???
View next topic View previous topic
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum