PHP Web Host - Quality Web Hosting For All PHP Applications Clan Themes! We make clans look good!!
  Login or Register
 • Home • Downloads • Your Account • Forums • 

View next topic
View previous topic


Google
 
Web RavenPHPScripts (This Site)
Post new topic   Reply to topic
Author Message
tauhid
Hangin' Around


Joined: Apr 11, 2009
Posts: 48

PostPosted: Sat Dec 12, 2009 9:04 am Reply with quote Back to top

Hello,

is the "NXP Online" by
Only registered users can see links on this board!
Get registered or login to the forums!
compatible with raven?

Yours sincerely
View user's profile Send private message
Susann
Moderator


Joined: Dec 19, 2004
Posts: 3143
Location: Germany:Moderator German NukeSentinel Support

PostPosted: Sat Dec 12, 2009 10:57 am Reply with quote Back to top

I have some doubts it will work flawless but try it out. Set display_errors to true in config.php and in rnconfig: $error_reporting = E_ALL;
to test it.
View user's profile Send private message Visit poster's website
tauhid
Hangin' Around


Joined: Apr 11, 2009
Posts: 48

PostPosted: Sat Dec 12, 2009 5:39 pm Reply with quote Back to top

I have tried to up the instalieren showed me 29%, and these errors:
Code:

Creating Tables & Inserting Data
The tables and data required to run this block will now be created in your database.

   
Creating table nuke_nxp_botlist    Failed To Create
Creating table nuke_nxp_online    Table Created
Creating table nuke_nxp_online_config    Table Created
Creating table nuke_nxp_online_icons    Table Created
Inserting data into nuke_nxp_botlist
[Number of lines to insert: 433]    Data Missing
0 Lines Inserted
Inserting data into nuke_nxp_online_config
[Number of lines to insert: 69]    Data Inserted
69 Lines Verified

It appears that one or more the tables have not inserted the data correctly into your tables, to try again click RE-CHECK or go to PHP Nuke Nederland for help
View user's profile Send private message
Susann
Moderator


Joined: Dec 19, 2004
Posts: 3143
Location: Germany:Moderator German NukeSentinel Support

PostPosted: Sat Dec 12, 2009 6:11 pm Reply with quote Back to top

Via PhpMyAdmin you can manually create the table nuke_nxp_botlist and add the missing lines there too or try the "Re-Check".
I have never used the block and canīt tell you if it will work.
View user's profile Send private message Visit poster's website
tauhid
Hangin' Around


Joined: Apr 11, 2009
Posts: 48

PostPosted: Sat Dec 12, 2009 7:09 pm Reply with quote Back to top

through PhpMyAdmin, I can not paste it because there is no SQL file. There is only one instalation folder where I canīt find files, no SQL
View user's profile Send private message
Palbin
Site Admin


Joined: Mar 30, 2006
Posts: 2456
Location: Pittsburgh, Pennsylvania

PostPosted: Sat Dec 12, 2009 8:13 pm Reply with quote Back to top

Open /nxp_online_install/nxp_online_step_4.php and find line 49:
Code:

'nxp_botlist_vers` int(5) NOT NULL default '',

Change it to:
Code:

`nxp_botlist_vers` int(5) NOT NULL default 0,
View user's profile Send private message
Palbin
Site Admin


Joined: Mar 30, 2006
Posts: 2456
Location: Pittsburgh, Pennsylvania

PostPosted: Sat Dec 12, 2009 8:26 pm Reply with quote Back to top

Also this makes reference to a includes/my_header.php. Disregard this and do the following.

Create includes/custom_files/custom_header.php and put the following code in it:
Code:

<?php

// NXP Online [BETA 3] --------------------------------------------------------------------------|
include_once("includes/my_header_nxp_online.php");
// End ---------------------------------------------------------------------------------------------------|

?>


Open /nxp_online_install/nxp_online_step_5.php and find line 42:
Code:

$lines = file("includes/my_header.php");

Change it to
Code:

$lines = file("includes/custom_files/custom_header.php");
View user's profile Send private message
Palbin
Site Admin


Joined: Mar 30, 2006
Posts: 2456
Location: Pittsburgh, Pennsylvania

PostPosted: Sat Dec 12, 2009 8:53 pm Reply with quote Back to top

The block also needs a fix for the security code.

Open /blocks/nxp_online/nxp_online_login.php and find lines 68-79:
Code:

      if (extension_loaded ("gd") AND ($gfx_chk == 2 OR $gfx_chk == 4 OR $gfx_chk == 5 OR $gfx_chk == 7))
   {
      $content .= "         <td align='left' valign='middle' colspan='2' height='18' class='boxcontent'>\n";
      $content .= "            " . _TYPESECCODE . "</td>\n";
      $content .= "      </tr>\n";
      $content .= "      <tr>\n";
      $content .= "         <td align='left' valign='middle'>\n";
      $content .= "            <input type='text' name='gfx_check' size='7' maxlength='6'></td>\n";
      $content .= "         <td align='right' valign='middle'>\n";
      $content .= "            <img src='modules.php?name=Your_Account&op=gfx&random_num=" . $random_num . "' border='1' width='77' height='20' align='center' alt='" . _SECURITYCODE . "' title='" . _SECURITYCODE . "'></td>\n";
      $content .= "            <input type='hidden' name='random_num' value='" . $random_num . "' /></td>\n";
   }

Replace with:
Code:

      if (extension_loaded ("gd") AND ($gfx_chk == 2 OR $gfx_chk == 4 OR $gfx_chk == 5 OR $gfx_chk == 7))
   {
      $content .= "         <td align='left' valign='middle' colspan='2' height='18' class='boxcontent'>\n";
      $content .= "            " . _TYPESECCODE . "</td>\n";
      $content .= "      </tr>\n";
      $content .= "      <tr>\n";
      $content .= "         <td align='left' valign='middle' colspan='2'>\n";
      $content .=             security_code(array(2,4,5,7), 'stacked');
      $content .= "            </td>\n";
   }
View user's profile Send private message
tauhid
Hangin' Around


Joined: Apr 11, 2009
Posts: 48

PostPosted: Sat Dec 12, 2009 9:26 pm Reply with quote Back to top

Thank you for your help.

if you find a new security vulnerabilities please inform me.

With Kind regards, thanks
View user's profile Send private message
nuke_q7
New Member
New Member


Joined: Jan 03, 2010
Posts: 16

PostPosted: Sat Jan 16, 2010 11:30 am Reply with quote Back to top

Palbin,
Thank you for all the fixes!
Block installed without a problem!
It seems like the iplookup table is out of date.
Could you show us how to update the nuke_nxp_online_iplookup table?
View user's profile Send private message
Display posts from previous:       
Post new topic   Reply to topic

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
Forums ©
 

All logos and trademarks in this site are property of their respective owner.
The comments are property of their posters, all the rest Đ 2002-2011 by Raven

You can syndicate our news using the file xml

CSE HTML Validator Helped Clean up This Page! [Valid RSS] valid RSS 2.0 Valid robots.txt Stop Spam Harvesters, Join Project Honey Pot

Website engines core code is Đ copyright by PHP-Nuke but has been heavily patched and modified by myself and others.
PHP-Nuke is a free software released under the GNU/GPL.


:: fisubice phpbb2 style by Daz :: PHP-Nuke theme by www.nukemods.com ::
:: fisubice Theme Modified by the RavenNuke™ Team ::

:: W3C CSS Compliance Validation :: W3C HTML 4.01 Transitional Compliance Validation ::

zerosum