You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 44 guest(s) and 1 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - Help Madman! Problem Altering Files for PHP-Nuke 7.4 [ ]
 Forum FAQ  •  Search  •   •  Memberlist  •  Usergroups   •  Register  •  Profile •    •  Log in to check your private messages  •  Log in

 
This forum is locked: you cannot post, reply to, or edit topics.  This topic is locked: you cannot edit posts or make replies.printer-friendly view
View previous topic Log in to check your private messages View next topic
Author Message
eyefrequency
Nuke Soldier
Nuke Soldier


Joined: Aug 04, 2004
Posts: 22


PostPosted: Sun Aug 15, 2004 11:35 pm Reply with quoteBack to top

I've struggled at adding the script needed to have admin secure 1.7 work on php-nuke 7.4. Madman, do you think I could send you the 3 files and you could alter them correctly for me? I would really appreciate your help! Thanks! Mr. Green
Find all posts by eyefrequencyView user's profileSend private message
nobleclem
Lieutenant
Lieutenant


Joined: May 27, 2003
Posts: 167

Location: Southfield, MI

PostPosted: Mon Aug 16, 2004 6:13 am Reply with quoteBack to top

Admin Secure works fine on nuke 7.4

_________________
....Check Out These Great Sites....


http://HackerAssassins.com is home to PHP-Nuke 7.4 HA Enhanced | http://FatalException.us

http://Vaelio.com < -- > The Future of CMS Technology and Design Today -- coming soon
Find all posts by nobleclemView user's profileSend private messageVisit poster's websiteAIM AddressMSN MessengerICQ Number
eyefrequency
Nuke Soldier
Nuke Soldier


Joined: Aug 04, 2004
Posts: 22


PostPosted: Mon Aug 16, 2004 9:55 am Reply with quoteBack to top

I know it does. It's not a question of if it will work, it's a question of how. I've tried to implement the code included in the install.txt, but i keep getting errors. Once I restore the files to their backups, I stop getting errors. I was wondering if madman could do it for me, so I could have working files along with their code that I could look at after to learn from my mistakes.
Find all posts by eyefrequencyView user's profileSend private message
madman
Support Mod
Support Mod


Joined: Feb 15, 2004
Posts: 806


PostPosted: Mon Aug 16, 2004 10:14 am Reply with quoteBack to top

eyefrequency wrote:
I was wondering if madman could do it for me, so I could have working files along with their code that I could look at after to learn from my mistakes.

Eyefreq, email me (madman(at)gp4tweaker.vadertrophy.com) along with your PHP-Nuke's admin.php, auth.php, and mainfile.php files. I will modify them for you.

_________________
I'm Image
Find all posts by madmanView user's profileSend private messageVisit poster's websiteYahoo MessengerMSN Messenger
eyefrequency
Nuke Soldier
Nuke Soldier


Joined: Aug 04, 2004
Posts: 22


PostPosted: Mon Aug 16, 2004 10:51 am Reply with quoteBack to top

Files sent. Thanks again, madman. Your the best! Mr. Green
Find all posts by eyefrequencyView user's profileSend private message
madman
Support Mod
Support Mod


Joined: Feb 15, 2004
Posts: 806


PostPosted: Mon Aug 16, 2004 11:44 am Reply with quoteBack to top

eyefrequency wrote:
Files sent. Thanks again, madman. Your the best! Mr. Green

Check your mailbox. Smile

_________________
I'm Image
Find all posts by madmanView user's profileSend private messageVisit poster's websiteYahoo MessengerMSN Messenger
eyefrequency
Nuke Soldier
Nuke Soldier


Joined: Aug 04, 2004
Posts: 22


PostPosted: Mon Aug 16, 2004 11:52 am Reply with quoteBack to top

Hi madman,

Do you think you could send those three files as attachments in the php format? I think you posted the code in the email, and I don't know how to transfer the script since the email client doesn't read php correctly, and it ends up looking like a jumbled mess. Thanks!
Find all posts by eyefrequencyView user's profileSend private message
madman
Support Mod
Support Mod


Joined: Feb 15, 2004
Posts: 806


PostPosted: Mon Aug 16, 2004 2:14 pm Reply with quoteBack to top

Ok, now compressed with zipped file. Smile
Please re-check your mailbox.

_________________
I'm Image
Find all posts by madmanView user's profileSend private messageVisit poster's websiteYahoo MessengerMSN Messenger
eyefrequency
Nuke Soldier
Nuke Soldier


Joined: Aug 04, 2004
Posts: 22


PostPosted: Mon Aug 16, 2004 11:23 pm Reply with quoteBack to top

Hi madman,

I think there might a problem with one of the files. Please check your mailbox for my email. Thanks, I'm sorry for being such a pain. Embarassed
Find all posts by eyefrequencyView user's profileSend private message
madman
Support Mod
Support Mod


Joined: Feb 15, 2004
Posts: 806


PostPosted: Tue Aug 17, 2004 4:00 am Reply with quoteBack to top

eyefrequency wrote:
I think there might a problem with one of the files. Please check your mailbox for my email. Thanks, I'm sorry for being such a pain. Embarassed

Sorry for my mistake. Yes, it has one char missing in auth.php file. I send you the fix (check again your mailbox), but for quick fix you can open/edit auth.php that I was sent and find these lines:
Code:
$admin = (isset($_COOKIE['admin']) && preg_match('/^[a-z0-9\+\/\=]+$/', $_COOKIE['admin'])) ? $_COOKIE['admin'] : '';


Replace with:

Code:
$admin = (isset($_COOKIE['admin']) && preg_match('/^[a-z0-9\+\/\=]+$/i', $_COOKIE['admin'])) ? $_COOKIE['admin'] : '';


They look similar, but actually a letter "i" was missing in Regex string (preg_match function).

_________________
I'm Image
Find all posts by madmanView user's profileSend private messageVisit poster's websiteYahoo MessengerMSN Messenger
eyefrequency
Nuke Soldier
Nuke Soldier


Joined: Aug 04, 2004
Posts: 22


PostPosted: Tue Aug 17, 2004 11:47 am Reply with quoteBack to top

Thank you so very much, madman! Works great! Very Happy
Find all posts by eyefrequencyView user's profileSend private message
eadtf
Private
Private


Joined: Jul 26, 2004
Posts: 46


PostPosted: Mon Aug 23, 2004 3:25 am Reply with quoteBack to top

I recently did a new install of Nuke 7.4 and I can't get Admin Secure to work, I followed the directions to the 'T' any help would be greatly appreicated. This is the error mesage I am getting when I try to login as Admin:

Quote:
Parse error: parse error in /home/awagus00/public_html/mainfile.php on line 1193

Warning: get_lang(admin/language/lang-.php): failed to open stream: No such file or directory in /home/awagus00/public_html/mainfile.php on line 207

Warning: get_lang(): Failed opening 'admin/language/lang-.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/awagus00/public_html/mainfile.php on line 207

Fatal error: Call to a member function on a non-object in /home/awagus00/public_html/admin.php on line 48


This is what I get when I login as user:

Quote:
Parse error: parse error in /home/awagus00/public_html/mainfile.php on line 1193

Fatal error: Call to a member function on a non-object in /home/awagus00/public_html/index.php on line 21


Perhaps I too could email you my three files?

-Pat
Find all posts by eadtfView user's profileSend private message
madman
Support Mod
Support Mod


Joined: Feb 15, 2004
Posts: 806


PostPosted: Mon Aug 23, 2004 10:30 am Reply with quoteBack to top

eadtf wrote:
Perhaps I too could email you my three files?

That's a better idea. Smile

_________________
I'm Image
Find all posts by madmanView user's profileSend private messageVisit poster's websiteYahoo MessengerMSN Messenger
eadtf
Private
Private


Joined: Jul 26, 2004
Posts: 46


PostPosted: Mon Aug 23, 2004 11:07 am Reply with quoteBack to top

Well I sent them again, the first set I sent earlier are the ones I tried Modding, I just realized that so I sent a clean copy.

Thanks Again,

Very Happy Patrick
Find all posts by eadtfView user's profileSend private message
eadtf
Private
Private


Joined: Jul 26, 2004
Posts: 46


PostPosted: Mon Aug 23, 2004 9:11 pm Reply with quoteBack to top

Hello Madman,

I sent them to this address: madman(at)gp4tweaker.vadertrophy.com is this still correct or should they have been sent elsewheres?

Patrick
Find all posts by eadtfView user's profileSend private message
Display posts from previous:      
This forum is locked: you cannot post, reply to, or edit topics.  This topic is locked: you cannot edit posts or make replies.printer-friendly view
View previous topic Log in to check your private messages View next 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



Powered by phpBB © 2001, 2005 phpBB Group

Ported by Nuke Cops © 2003 www.nukecops.com
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::
Powered by · TOGETHER TEAM srl ITALY http://www.togetherteam.it · DONDELEO E-COMMERCE http://www.DonDeLeo.com
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 0.255 Seconds - 209 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::