Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Ravens PHP Scripts And Web Hosting Forum Index -> NukeSentinel(tm) v2.4.x
Author Message
leo51
Worker
Worker



Joined: Sep 09, 2004
Posts: 106
Location: Canada

PostPosted: Fri Mar 24, 2006 5:54 pm Reply with quote

I have followed the User_Guide to install Sentinel but have questions:

On "Installation - Page 3" it says this; "If this is the first time you have installed NukeSentinel(tm), and the installation is successful, you will see a screen similar to the following:"; But what is that screen because I am not sure what is the following SCREEN since there is no example screen except what's on the normal page 3.

However, after I ran "nsnst I got the following message:

Operation Status!

Everything seems to have completed succeesfully Smile
Operation Complete!
Goto NukeSentinel(tm) Admin
. I checked my nuke database and there are now the tables for "nsnst".

When I click on [Goto NukeSentiel] Admin[/b] I get the login window (window usually associated with use or restricted directory using .htaccass ) but my password for nuke will not work here so I disable the .htaccass file to get to my ADMIN Control Panel and when I click on theSentinel Module I just get a blank screen.

Question: What should be my logins for here?

In the readme.txt file there is this info:

File Edits:
=====================
See the text files found in the Edits_For_Core_Files directory of this package."

I am running Nuke 7.9 so I selected "mainfile.txt but my mainfile seems very different. However, I tried doing the hacking where possible my following the edit files sections in the User Guide.

Any help on what should I do for nuke 9? Because once I replace the mainfile.php with the edited version I go to a blank screen
Many Thanks
 
View user's profile Send private message Visit poster's website MSN Messenger
Raven
Site Admin/Owner



Joined: Aug 27, 2002
Posts: 17088

PostPosted: Tue Mar 28, 2006 11:44 am Reply with quote

You need to downgrade to nuke v7.6. See the many posts on this in the forum. Or, better yet, since this is a new installation, Download RavenNuke76 v2.02.00 and it's all preinstalled for you Wink
 
View user's profile Send private message
leo51







PostPosted: Wed Mar 29, 2006 9:51 pm Reply with quote

Raven wrote:
You need to downgrade to nuke v7.6. See the many posts on this in the forum. Or, better yet, since this is a new installation, Download RavenNuke76 v2.02.00 and it's all preinstalled for you Wink


Thanks for the info.....However, here is my issue::


Donations are welcomed at [ Only registered users can see links on this board! Get registered or login! ]
caution: zipfile comment truncated
error [rwsRavenNuke76_v2.02.00_FULL.zip]: missing 386 bytes in zipfile
(attempting to process anyway)
error [rwsRavenNuke76_v2.02.00_FULL.zip]: start of central directory not found;
zipfile corrupt.
(please check that you have transferred or created the zipfile in the
appropriate BINARY mode and that you have compiled UnZip properly)
------------------------------------

I do not know what the issue is but I have downloaded the file again and is getting that same error. The file size says 7,712KB and on the download page it says Filesize: 7.53 MB and there are tons of download and I have not seen any threads on the error that I am having so could the issue just with me?

Thanks Again
 
Raven







PostPosted: Wed Mar 29, 2006 10:10 pm Reply with quote

I think so. Are you using some kind of a zip utility that's integrated in the browser or a d/l manager? If so, just do a regular HTML d/l.
 
leo51







PostPosted: Wed Mar 29, 2006 10:16 pm Reply with quote

Raven wrote:
I think so. Are you using some kind of a zip utility that's integrated in the browser or a d/l manager? If so, just do a regular HTML d/l.


Well, can't say much except that I am using PuTTY to SSH into my server and do the unzip filename. However, on my computer it unzip OK except that I now have to take the pain to upload the folder but I am going to try and zip it back and up load will report back if I get through this ever but I might just go to bed have to be out early in the morning
 
Raven







PostPosted: Wed Mar 29, 2006 10:26 pm Reply with quote

Make sure you are using the latest incarnation of putty an unzip.
 
leo51







PostPosted: Wed Mar 29, 2006 10:33 pm Reply with quote

Raven wrote:
Make sure you are using the latest incarnation of putty an unzip.


OK.For the unzip its on the server and All that I do is ftp the zip file, start putty and work from there. I just downloaded putty about a week ago but I will also check.

Thanks again
 
leo51







PostPosted: Thu Mar 30, 2006 12:38 am Reply with quote

I used a different ftp and was able to unzip but now I run the setup and just keep getting "All passwords must be at least 8 long" but the passwords are over 8 charactors can you tell me what's the problem please.

Many Thanks again for the help.
 
leo51







PostPosted: Thu Mar 30, 2006 4:38 pm Reply with quote

Hellow, Raven, I hoped to have found some help to my new installion of rwsRavenNuke76_v2.02.00-FULL but guess that's not yer forth-coming and you guys are busy.

However, again, I have gone through reading all of the proceedures on the installation and started this time with INSTALLATION/installSQL.php instead of running the setup but after hours and can't seem to find the answers to why the installation is not completing I am back here.

Here is the error installing by the way of "INSTALLATION/installSQL.php": ERROR! The exact error message that your MySQL server reported is You have an error in your SQL syntax near '; ' at line 1.

When I try the installation from the way of using setup I get this error: "All passwords must be at least 8 long".

And suggestion PLEASE


Many Thanks.

UPDATE Thursday March 30, 2006 : 6:15 PM.

I have decided to install the tables the manual way (phpMyAdmin) and here is the results of the CORE TABLES:
SQL query:

CREATE TABLE `nuke_subscriptions` (
`id` int( 10 ) NOT NULL AUTO_INCREMENT ,
`userid` int( 10 ) default '0',
`subscription_expire` varchar( 50 ) NOT NULL default '',
PRIMARY KEY `id` ( `id` , `userid` )
) TYPE = MYISAM

MySQL said: Documentation
#1171 - All parts of a PRIMARY KEY must be NOT NULL; If you need NULL in a key, use UNIQUE instead
 
evaders99
Former Moderator in Good Standing



Joined: Apr 30, 2004
Posts: 3221

PostPosted: Thu Mar 30, 2006 9:58 pm Reply with quote

Change

Code:


`userid` int( 10 ) default '0',


to

Code:


`userid` int( 10 ) NOT NULL default '0',


Already fixed for the next release

_________________
- Star Wars Rebellion Network -

Need help? Nuke Patched Core, Coding Services, Webmaster Services 
View user's profile Send private message Visit poster's website
leo51







PostPosted: Thu Mar 30, 2006 10:42 pm Reply with quote

evaders99 wrote:
Change

Code:


`userid` int( 10 ) default '0',


to

Code:


`userid` int( 10 ) NOT NULL default '0',


Already fixed for the next release


Hellow, evaders, Thanks again for coming to my rescure it seems that I'm going to have to stick with you always.

Now I get a next error on the last table: SQL query:

--
-- Dumping data for table `nuke_users_temp`
--

MySQL said: Documentation
#1064 - You have an error in your SQL syntax near '--' at line 3.

How do I fix that one. I was really about to give up on installing this package and just use the plain old nuke 7.6 and do all the patches since I have been patching 7.6 on my old site.

And while I am here since it seems that I will have to do all manually do I have add everything in the INSTALLATION/sql folder? There are 16 file together with 4 .sql extentions and 12 with .sql.gz extensions.

Again Many Thanks for helping.
 
Guardian2003
Site Admin



Joined: Aug 28, 2003
Posts: 6799
Location: Ha Noi, Viet Nam

PostPosted: Thu Mar 30, 2006 11:52 pm Reply with quote

You are using an old version of mysql it seems as this error has been reported before.
A quick search of the forums will reveal the fix for this but basically you can get around it by removing all text that is not specifically for creating or inserting data (remove all commenting and comments).
 
View user's profile Send private message Send e-mail
leo51







PostPosted: Fri Mar 31, 2006 12:07 am Reply with quote

Guardian2003 wrote:
You are using an old version of mysql it seems as this error has been reported before.
A quick search of the forums will reveal the fix for this but basically you can get around it by removing all text that is not specifically for creating or inserting data (remove all commenting and comments).


OK, Many Thanks - I am using mysql-3.23.58-pc-linux-i686 and will have to get this upgraded. Also, will do what you have suggest but in the morning my head is spinding.

I do read the nuke forums but sometimes a search is never getting you the answers and you read and read still the head can't take to more --- lol well its true that I did come up on a similar topic but the error message was not the same and the also


Again Thanks
 
leo51







PostPosted: Sat Apr 01, 2006 11:19 am Reply with quote

Hello All, Just wanted to say thanks to the readers of my issues and to the ones who gave in their bit......Many Thanks.

My issues are now resolved...........I manually installed rwsRavenNuke76_v2.02.00_FULL.zip and all is now well I can start putting my new site together.

For anyone who might just be having the same issues and you are familiar with phpMyAdmin just stick with it. However, any comment(s) lines at the end of the coure tables just edit them out.


Again, THANKS TO ALL.


Fred
 
montego
Site Admin



Joined: Aug 29, 2004
Posts: 9457
Location: Arizona

PostPosted: Sat Apr 01, 2006 2:34 pm Reply with quote

We have also removed comments from the upcoming patched version of RavenNuke76 2.02.02. Due to be out soon.

_________________
Where Do YOU Stand?
HTML Newsletter::ShortLinks::Mailer::Downloads and more... 
View user's profile Send private message Visit poster's website
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.    Ravens PHP Scripts And Web Hosting Forum Index -> NukeSentinel(tm) v2.4.x

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
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©