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 -> Raven's RavenNuke(tm) v2.02.02 Distro
Author Message
reivis
New Member
New Member



Joined: Dec 04, 2005
Posts: 8

PostPosted: Thu Aug 24, 2006 12:35 am Reply with quote

Hello there,
in the first place i am very happy about the distro but resently i discovert a problem.
In IE the site is working fine but in Firefox (last version) nothing is showing up only a blank screen.

Can you help me to fix the problem.

regards
Reinier [ Only registered users can see links on this board! Get registered or login! ]
 
View user's profile Send private message Visit poster's website
Susann
Moderator



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

PostPosted: Thu Aug 24, 2006 7:59 am Reply with quote

No DOCTYPE found! Attempting validation with XHTML 1.0 Transitional.
433 error on the main page ? Your site is online since 2005. I´m sure this problem is not from the first installation. Possible its trough the javascript you added ?The Original theme Fisubice in RavenNuke is 100 % W3C valid !
Also I did´t found: Distributed by ravenphpscripts.com ?

Check all your errors at: [ Only registered users can see links on this board! Get registered or login! ]
 
View user's profile Send private message
reivis







PostPosted: Thu Aug 24, 2006 8:12 am Reply with quote

Hello,

Can you explan that to me?
The site is brand new only the data is from 2005.
And a javascript???? What do you mean by that?
 
Susann







PostPosted: Thu Aug 24, 2006 8:25 am Reply with quote

Check your site with different tools e.g. with the http viewer at: [ Only registered users can see links on this board! Get registered or login! ]

I mean I saw some javascript which is not in the standard RavenNuke by checking the website.
 
Tao_Man
Involved
Involved



Joined: Jul 15, 2004
Posts: 252
Location: OKC, OK

PostPosted: Thu Aug 24, 2006 10:57 am Reply with quote

I looked at your site, it seems to be a problem some how with the left blocks, I regestered on your site, and in FF if I put in a url to take me to a module that is not showing any left blocks like the forum or your account it woks just fine in FF, but if I go to the home page It is a blank page.

_________________
------------------------------------------
To strive, to seek, to find, but not to yield!
I don't know Kara-te but I do know cra-zy, and I WILL use it! 
View user's profile Send private message Visit poster's website
reivis







PostPosted: Thu Aug 24, 2006 11:56 am Reply with quote

I removed the javascript so thats not the bug i think.
 
reivis







PostPosted: Fri Aug 25, 2006 3:46 am Reply with quote

Anyone?
 
Susann







PostPosted: Fri Aug 25, 2006 7:52 am Reply with quote

gzip enabled ? Another user from our forum got a blank page in IE with this function. However you need to fix the html errors. Maybe try it without the admin message because there are also several errors(see also line 343 and 165) from: [ Only registered users can see links on this board! Get registered or login! ] and you can try it without the sommaire block.
Did you also checked the website with displays_errors=true in config.php ?


Last edited by Susann on Sat Aug 26, 2006 1:06 pm; edited 1 time in total 
aseitz
Regular
Regular



Joined: Mar 08, 2005
Posts: 57
Location: Portland, Oregon USA

PostPosted: Fri Aug 25, 2006 12:15 pm Reply with quote

Try creating an generic index.html file with something along the lines of "Hello World!" in it. Make sure that can get served. I am seeing absolutly no page source from your site and it is taking quite a while to serve out the blank page.

_________________
if (video) {
die ( "Radio_Star");
} 
View user's profile Send private message Visit poster's website Yahoo Messenger MSN Messenger
Bluezzz
Involved
Involved



Joined: Feb 08, 2005
Posts: 290
Location: USA

PostPosted: Fri Aug 25, 2006 1:30 pm Reply with quote

Try the suggestions from this url one step at a time, do one step and test, if it didn't work reverse it and test to be sure you are ok (as before you did that step); then go on to the next step, etc. I had the problem yesterday where I could access my Forums link from FireFox, IE and Netscape but when I tried to go into Forums Admin the page was blank for all three browsers. I apparently had this problem over a year ago because this is where I *refound* my cure. Good luck!

http://www.karakas-online.de/forum/viewtopic.php?t=291

_________________
Bluezzz
~ Stop & smell the roses, while you can! ~ 
View user's profile Send private message
Guardian2003
Site Admin



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

PostPosted: Sat Aug 26, 2006 12:52 am Reply with quote

In forum configuration make sure 'use gzip' is set to off.
 
View user's profile Send private message Send e-mail
Bluezzz







PostPosted: Sat Aug 26, 2006 8:31 am Reply with quote

For me, from the page link I gave you, it was Solution 2 ...

Solution 2: Add the following line to a .htaccess file placed in your root PHP-Nuke directory:

Code:

PHP_FLAG output_buffering on



or if you have access to your php.ini, set:

Code:

output_buffering=on;


I changed the .htaccess one because I'm not sure where on my site the php.ini is. That seems to have cured the problem for me but try all the suggestions on that page and see which works for you, it may even be a combination of more than one but I'd try one at a time first.
 
reivis







PostPosted: Sun Aug 27, 2006 11:56 pm Reply with quote

Thxs guys but notting helps.
Any other suggestions?
 
reivis







PostPosted: Wed Oct 04, 2006 1:42 am Reply with quote

I found the problem.
I have a statistic program running at my site called bbclone.
When i put the lines in my index.php i got a white screen.
Here is the code:
<?php
define("_BBC_PAGE_NAME", "Reinan");
define("_BBCLONE_DIR", "bbclone/");
define("COUNTER", _BBCLONE_DIR."mark_page.php");
if (is_readable(COUNTER)) include_once(COUNTER);
?>

Does anybody know whats wrong with this code?
 
fkelly
Former Moderator in Good Standing



Joined: Aug 30, 2005
Posts: 3312
Location: near Albany NY

PostPosted: Wed Oct 04, 2006 7:12 am Reply with quote

Did you put this code in the Nuke index.php or in a separate index.php that you're running?

I don't see anything wrong with the code per se but since it includes "mark_page.php" there could be something wrong there. Why not just leave it out and see what happens. What's the objective of the statistics program?

And if you are going to fiddling with code you ought to figure out how to debug it. For instance, change it to:

Code:
define("COUNTER", _BBCLONE_DIR."mark_page.php");

echo 'value of counter after define is ' . COUNTER . '<BR>';
// if (is_readable(COUNTER)) include_once(COUNTER);


That way you could see if COUNTER is getting defined successfully and isolate the problem to mark_page.php.
 
View user's profile Send private message Visit poster's website
reivis







PostPosted: Wed Oct 04, 2006 8:08 am Reply with quote

It didnt work Mad
I got the same white screen.
And bbclone is a very nice tool to use.
it worked at al of my nuke site's only not in the distro from raven.
For a example see [ Only registered users can see links on this board! Get registered or login! ]
Is there mayby any one else who worked with it in these distro?
 
montego
Site Admin



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

PostPosted: Wed Oct 04, 2006 2:09 pm Reply with quote

I cannot think of anything within RAvenNuke that would preclude this code working as fkelly has asked you to test. Are you sure you made the edits correctly? Are these edits right at the top of index.php? If so, can you post maybe the first 20 or so lines of your index.php that is causing the white screen? Thx.

_________________
Where Do YOU Stand?
HTML Newsletter::ShortLinks::Mailer::Downloads and more... 
View user's profile Send private message Visit poster's website
fkelly







PostPosted: Wed Oct 04, 2006 6:50 pm Reply with quote

I looked at the statistics on the link you gave. It looks fine and I can see why you'd want the package to work. However, I have to ask a slightly different question. If you can get it to work with the link you gave before, why put it in index.php of Nuke? Why not just create a bookmark for it with the /bbclone link and when you want to see the statistics, just click that link? I guess I don't understand why you want the added complexity of sticking the statistics within Nuke.
 
kevinkap
Involved
Involved



Joined: Apr 22, 2006
Posts: 356

PostPosted: Thu Oct 12, 2006 8:29 am Reply with quote

It seems as if I am having this issue as well. The site was under a parked domain. I moved the domain to its own account now. I still have issues in FF with it loading a blank white page. You can refresh it and it will generally load. It doesn't seem to happen all the time but from people in various places. some times using diff. variations of the url gives diff results but it is inconsistent. IE http//:url [ Only registered users can see links on this board! Get registered or login! ] url

I have indexes set to index.php, index.htm, index.html.
The site is [ Only registered users can see links on this board! Get registered or login! ]

Could sentinal cause this?

_________________
Kevin Kappes 
View user's profile Send private message
evaders99
Former Moderator in Good Standing



Joined: Apr 30, 2004
Posts: 3221

PostPosted: Thu Oct 12, 2006 10:49 am Reply with quote

I don't seem to have any problems. I noticed you used Spam Stopper though.. which could be the first screen some people see if they are linking from another site

_________________
- Star Wars Rebellion Network -

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







PostPosted: Thu Oct 12, 2006 10:55 am Reply with quote

can you explain please? As I to sometimes get the white screen.

Thanks
 
evaders99







PostPosted: Thu Oct 12, 2006 11:10 am Reply with quote

Well click your link through this page...
Closest I've gotten to a white page, I don't see any others
 
kevinkap







PostPosted: Thu Oct 12, 2006 11:19 am Reply with quote

yes, exactly. So I need to make some changes to spam stopper? I added this site to the white list and it resolved the issue. I guess I will have to mess with the blocker config a bit.
Thanks
 
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 -> Raven's RavenNuke(tm) v2.02.02 Distro

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 ©