PHP Web Host - Quality Web Hosting For All PHP Applications Free RavenNuke(tm) Add Ons
  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
jakec
Site Admin


Joined: Feb 06, 2006
Posts: 3038
Location: United Kingdom

PostPosted: Tue Mar 18, 2008 6:58 am Reply with quote Back to top

I uploaded the latest files and made sure the two character index fields are 150 characters, but the problem still remains.
View user's profile Send private message
kguske
Site Admin


Joined: Jun 04, 2004
Posts: 6044

PostPosted: Tue Mar 18, 2008 10:22 am Reply with quote Back to top

The problem being that you have no text in the new version popup?
View user's profile Send private message
jakec
Site Admin


Joined: Feb 06, 2006
Posts: 3038
Location: United Kingdom

PostPosted: Tue Mar 18, 2008 11:35 am Reply with quote Back to top

If uncomment lines 48-50 I can not access NukeFeed admin and I get the Fatal Error that I mentioned at the start of the thread.

If I leave those lines commented out, than I can access the admin page and it is telling me that I am using nukeFEED 1.1.0, but it's telling me I have the latest version.

At the moment it is working if I comment out those lines, but if you have the time I am happy to PM you my site details and provide FTP access so you can have a play.
View user's profile Send private message
kguske
Site Admin


Joined: Jun 04, 2004
Posts: 6044

PostPosted: Tue Mar 18, 2008 4:33 pm Reply with quote Back to top

I am swamped at the moment, but would like to investigate this further as soon as I have some time.
View user's profile Send private message
jakec
Site Admin


Joined: Feb 06, 2006
Posts: 3038
Location: United Kingdom

PostPosted: Wed Mar 19, 2008 1:03 am Reply with quote Back to top

OK let me know and I will email you the details.
View user's profile Send private message
virtualwar
Hangin' Around


Joined: Jan 22, 2008
Posts: 35
Location: California, USA

PostPosted: Sun Mar 23, 2008 5:59 pm Reply with quote Back to top

jakec wrote:
If uncomment lines 48-50 I can not access NukeFeed admin and I get the Fatal Error that I mentioned at the start of the thread.

If I leave those lines commented out, than I can access the admin page and it is telling me that I am using nukeFEED 1.1.0, but it's telling me I have the latest version.

At the moment it is working if I comment out those lines, but if you have the time I am happy to PM you my site details and provide FTP access so you can have a play.


I am using the latest version of RN, and I too am having this same exact problem (and same solution to actually access the Admin screen).

You are not alone... >.>
View user's profile Send private message Visit poster's website AIM Address MSN Messenger
kguske
Site Admin


Joined: Jun 04, 2004
Posts: 6044

PostPosted: Mon Mar 24, 2008 3:59 am Reply with quote Back to top

virtualwar, I like your quote from The Fifth Element - but at this point in my life, time is of great importance...
View user's profile Send private message
virtualwar
Hangin' Around


Joined: Jan 22, 2008
Posts: 35
Location: California, USA

PostPosted: Mon Mar 24, 2008 8:15 am Reply with quote Back to top

kguske wrote:
but at this point in my life, time is of great importance...


Haha... yes... this is how I feel most the time too <.<
View user's profile Send private message Visit poster's website AIM Address MSN Messenger
jakec
Site Admin


Joined: Feb 06, 2006
Posts: 3038
Location: United Kingdom

PostPosted: Mon Mar 24, 2008 8:33 am Reply with quote Back to top

virtualwar, can you confirm your setup?

If I am not the only one perhaps we can track down the cause of this problem. Very Happy
View user's profile Send private message
virtualwar
Hangin' Around


Joined: Jan 22, 2008
Posts: 35
Location: California, USA

PostPosted: Mon Mar 24, 2008 1:32 pm Reply with quote Back to top

Apache version 1.3.37 (Unix)
PHP version 5.0.5
MySQL version 5.0.45-community-log
Architecture i686
Operating system Linux
Kernel version 2.6.23.13-grsec-sg1
Host: Siteground


RN 2.20.01
Shortlinks Enabled
Dynamic Titles Enabled

Hrm... anything else that may be of use? =)
View user's profile Send private message Visit poster's website AIM Address MSN Messenger
kguske
Site Admin


Joined: Jun 04, 2004
Posts: 6044

PostPosted: Mon Apr 14, 2008 4:30 am Reply with quote Back to top

Haven't had a chance to check on this yet, but just letting you know it's still on the list.
View user's profile Send private message
kguske
Site Admin


Joined: Jun 04, 2004
Posts: 6044

PostPosted: Sat Aug 30, 2008 5:57 am Reply with quote Back to top

This came up again during testing on RN 2.3.0. The problem is the version of PHP you're using has a bug. We decided to enable a configuration setting (in RN it's in rnconfig.php, but it could also be in config.php) to disable the update check.

The configuration setting is nf_ENABLEUPDATECHECK, and if you set it to:

nf_ENABLEUPDATECHECK = false;

Until you get the latest RN, you'll also need add the code below to modules/Feeds/admin/index.php:

find:
Code:
  if($seoConfig['version_check'] < $checktime) {
    $versionInfo = seoGetCurrentVersion('nukeFEED', 0);
    $nFVersion  = $versionInfo['version'];
    $nFVerURL   = $versionInfo['url'];
    $nFVerNotes = addslashes($versionInfo['notes']);
    seoSaveConfig($seoModule, 'version_check', $checktime);
    seoSaveConfig($seoModule, 'version_newest', $nFVersion);
    seoSaveConfig($seoModule, 'version_url', $nFVerURL);
    seoSaveConfig($seoModule, 'version_notes', $nFVerNotes);
  }
  if ($nFVersion > $seoConfig['version_number']) { 
    $seoVersionHTML = seoPopUp(_nF_NEWVER.' - '.$nFVersion, $nFVerNotes).' <strong>'._nF_NEWVER.' - <a href="'.htmlentities($nFVerURL).'" title="'._nF_GETNEWVER.$nFVersion.'">'.$nFVersion.'</a></strong>';
  } else {
    $seoVersionHTML = '<i>'._nF_CURVER.'</i>';
  }


Insert before:
Code:
  if (nf_ENABLEUPDATECHECK) {


Insert after:
Code:
  } else {
    $seoVersionHTML = '';
  }
View user's profile Send private message
Susann
Moderator


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

PostPosted: Thu Dec 17, 2009 2:49 pm Reply with quote Back to top

I know this is an old entry but I´m running PHP version 5.2.11 the newest RavenNuke files and got the same error.
Changed it to false in rnconfig.php and voila the blank page is gone. Wink
View user's profile Send private message Visit poster's website
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