I cannot enter in my forum index but in section yes HELP

Started by edi67, January 13, 2011, 01:18:30 PM

Previous topic - Next topic

edi67

Please i need urgently some help i cannot enter in my forum index page  www.crazyzone.biz but i can enter in section , topic etc. look here for exemple http://crazyzone.biz/index.php?board=10.0

my test.php file work perfectly look: http://crazyzone.biz/test.php

What is happened?? nothing i changed i dont know my PHP memory limit is 128 MB but i dont know where is the problem please somebody can suggest me or help me?
CrazyZone - My SMF Forum


From the difficult the hardening of the man you can see

Yigal

What modifications do you have installed?

Read this please:  http://pcsupport.about.com/od/findbyerrormessage/a/504error.htm
Yigal V.
Contact me by PM


do yourself a favour and not annoy support helpers by spamming or messaging for support
1.x Support | 2.x Support | 5Mods

edi67

Quote from: Yigal on January 13, 2011, 01:36:36 PM
What modifications do you have installed?

Read this please:  http://pcsupport.about.com/od/findbyerrormessage/a/504error.htm

No one new modification by 5 months, all worked perfectly until yesterday
CrazyZone - My SMF Forum


From the difficult the hardening of the man you can see

kat

Edi... do me a favour, will you?

Open index.php, in the root of your forum (Where settings.php is).

Can you copy/paste the very first line, here, please?

edi67

Quote from: K@ on January 13, 2011, 04:45:03 PM
Edi... do me a favour, will you?

Open index.php, in the root of your forum (Where settings.php is).

Can you copy/paste the very first line, here, please?


Thx for your attention i want advise you that yesterday suport of my site made me try a lot of test ( disabled shotbox, disablechat, disable simpleportal and also put my forum in maintenance ) after that them i dont know what them made but index page is visibile now BUT them told me that my site WITH all this disabling actions and in maintenance mode TOOK more than 300 seconds for load, in simple words WITHOUT activity my forum work ALWAYS with so much seonds for load.
What could be happened please try to help me i dont know what to do, my forum was online always by years without such problems and now i dont now what make.
Here there is php.info of my site: http://crazyzone.biz/test.php

Now is not so much clear the problem but for 2 days my index page don't load, load everything portal page, topic and section page but DON'T load index page, it remaining many seconds loading and after return me back error 504, timeout server etc error.

Also my server support wrote me this:
Quote>time php index.php
44.589u 17.001s 1:02.04 99.2% 509+2413k 0+0io 0pf+0w

Current configuration requires near 45 seconds only to execute index.php. It's very long.

> Premature end of script headers: php

This line indicates that script has been interrupted or returns invalid data. In our case possibility of the first is higher. The reason why is behaves like this your database becomes large and application uses it can't use it in sufficient way.

Some solution ?

Pleae i wil be glad if somebody can help me

Above the first 340 line of index.php

<?php
/**********************************************************************************
* index.php                                                                       *
***********************************************************************************
* SMF: Simple Machines Forum                                                      *
* Open-Source Project Inspired by Zef Hemel ([email protected])                    *
* =============================================================================== *
* Software Version:           SMF 2.0 RC1                                         *
* Software by:                Simple Machines (http://www.simplemachines.org)     *
* Copyright 2006-2009 by:     Simple Machines LLC (http://www.simplemachines.org) *
*           2001-2006 by:     Lewis Media (http://www.lewismedia.com)             *
* Support, News, Updates at:  http://www.simplemachines.org                       *
***********************************************************************************
* This program is free software; you may redistribute it and/or modify it under   *
* the terms of the provided license as published by Simple Machines LLC.          *
*                                                                                 *
* This program is distributed in the hope that it is and will be useful, but      *
* WITHOUT ANY WARRANTIES; without even any implied warranty of MERCHANTABILITY    *
* or FITNESS FOR A PARTICULAR PURPOSE.                                            *
*                                                                                 *
* See the "license.txt" file for details of the Simple Machines license.          *
* The latest version can always be found at http://www.simplemachines.org.        *
**********************************************************************************/


/* This, as you have probably guessed, is the crux on which SMF functions.
Everything should start here, so all the setup and security is done
properly.  The most interesting part of this file is the action array in
the smf_main() function.  It is formatted as so:

'action-in-url' => array('Source-File.php', 'FunctionToCall'),

Then, you can access the FunctionToCall() function from Source-File.php
with the URL index.php?action=action-in-url.  Relatively simple, no?
*/
$forum_version 'SMF 2.0 RC1';

if(isset(
$_GET['yshout']))
{
$yshout_from_index=true;
include_once('yshout/yshout.php');
exit;
}

// Get everything started up...
define('SMF'1);
if (
function_exists('set_magic_quotes_runtime'))
@set_magic_quotes_runtime(0);
error_reporting(defined('E_STRICT') ? E_ALL E_STRICT E_ALL);
$time_start microtime();

// Do some cleaning, just in case.
foreach (array('db_character_set''cachedir') as $variable)
if (isset($GLOBALS[$variable]))
unset($GLOBALS[$variable]);

// Load the settings...
require_once(dirname(__FILE__) . '/Settings.php');

// Make absolutely sure the cache directory is defined.
if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir '/cache'))
$cachedir $boarddir '/cache';

// And important includes.
require_once($sourcedir '/QueryString.php');
require_once(
$sourcedir '/Subs.php');
require_once(
$sourcedir '/Errors.php');
require_once(
$sourcedir '/Load.php');
require_once(
$sourcedir '/Arcadeusers.php');require_once($sourcedir '/Security.php');
require_once(
$sourcedir '/Subs-Portal.php');
if (
file_exists($sourcedir '/LoadAds.php'))
require_once($sourcedir '/LoadAds.php');

// Using an pre-PHP5 version?
if (@version_compare(PHP_VERSION'5') == -1)
require_once($sourcedir '/Subs-Compat.php');

// If $maintenance is set specifically to 2, then we're upgrading or something.
if (!empty($maintenance) && $maintenance == 2)
db_fatal_error();

// Create a variable to store some SMF specific functions in.
$smcFunc = array();

// Initate the database connection and define some database functions to use.
loadDatabase();

// Load the settings from the settings table, and perform operations like optimizing.
reloadSettings();
// Clean the request variables, add slashes, etc.
cleanRequest();
$context = array();

// Seed the random generator.
if (empty($modSettings['rand_seed']) || mt_rand(1250) == 69)
smf_seed_generator();

// Before we get carried away, are we doing a scheduled task? If so save CPU cycles by jumping out!
if (isset($_GET['scheduled']))
{
require_once($sourcedir '/ScheduledTasks.php');
AutoTask();
}

// Check if compressed output is enabled, supported, and not already being done.
if (!empty($modSettings['enableCompressedOutput']) && !headers_sent() && ob_get_length() == 0)
{
// If zlib is being used, turn off output compression.
if (@ini_get('zlib.output_compression') == '1' || @ini_get('output_handler') == 'ob_gzhandler' || @version_compare(PHP_VERSION'4.2.0') == -1)
$modSettings['enableCompressedOutput'] = '0';
else
ob_start('ob_gzhandler');
}
// This makes it so headers can be sent!
if (empty($modSettings['enableCompressedOutput']))
ob_start();

// Register an error handler.
set_error_handler('error_handler');

// Start the session. (assuming it hasn't already been.)
loadSession();

// Determine if this is using WAP, WAP2, or imode.  Technically, we should check that wap comes before application/xhtml or text/html, but this doesn't work in practice as much as it should.
if (isset($_REQUEST['nowap']))
$_SESSION['nowap'] = true;
elseif (!isset(
$_SESSION['nowap']))
{
if (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'application/vnd.wap.xhtml+xml') !== false)
$_REQUEST['wap2'] = 1;
elseif (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'text/vnd.wap.wml') !== false)
{
if (strpos($_SERVER['HTTP_USER_AGENT'], 'DoCoMo/') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'portalmmm/') !== false)
$_REQUEST['imode'] = 1;
else
$_REQUEST['wap'] = 1;
}
}

if (!
defined('WIRELESS'))
define('WIRELESS', isset($_REQUEST['wap']) || isset($_REQUEST['wap2']) || isset($_REQUEST['imode']));

// Some settings and headers are different for wireless protocols.
if (WIRELESS)
{
define('WIRELESS_PROTOCOL', isset($_REQUEST['wap']) ? 'wap' : (isset($_REQUEST['wap2']) ? 'wap2' : (isset($_REQUEST['imode']) ? 'imode' '')));

// Some cellphones can't handle output compression...
$modSettings['enableCompressedOutput'] = '0';
// !!! Do we want these hard coded?
$modSettings['defaultMaxMessages'] = 5;
$modSettings['defaultMaxTopics'] = 9;

// Wireless protocol header.
if (WIRELESS_PROTOCOL == 'wap')
header('Content-Type: text/vnd.wap.wml');
}

// What function shall we execute? (done like this for memory's sake.)
call_user_func(smf_main());

// Call obExit specially; we're coming from the main area ;).
obExit(nullnulltrue);

// The main controlling function.
function smf_main()
{
global $modSettings$settings$user_info$board$topic$board_info$maintenance$sourcedir;

// Special case: session keep-alive, output a transparent pixel.
if (isset($_GET['action']) && $_GET['action'] == 'keepalive')
{
header('Content-Type: image/gif');
die("\x47\x49\x46\x38\x39\x61\x01\x00\x01\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x21\xF9\x04\x01\x00\x00\x00\x00\x2C\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02\x44\x01\x00\x3B");
}

// Load the user's cookie (or set as guest) and load their settings.
loadUserSettings();

// Load the current board's information.
loadBoard();

// Load the current user's permissions.
loadPermissions();

// Load all the ads up
if (function_exists("loadAds"))
loadAds();

// Load the current theme.  (note that ?theme=1 will also work, may be used for guest theming.)
loadTheme();

// Check if the user should be disallowed access.
is_not_banned();
// Is there new pms? PM Informer...
loadPmInformer();
// Is there new pms? PM Informer...
loadPmWarning();

        
//Disable Right Click v4 Mod by NIBOGO - Adding the code for all the templates
if (!allowedTo('right_click') && !empty($modSettings['arrange_drc']))
disable_right_click();   

        
// If we are in a topic and don't have permission to approve it then duck out now.
if (!empty($topic) && empty($board_info['cur_topic_approved']) && !allowedTo('approve_posts') && ($user_info['id'] != $board_info['cur_topic_starter'] || $user_info['is_guest']))
fatal_lang_error('not_a_topic'false);


// Do some logging, unless this is an attachment, avatar, theme option or XML feed.
if (empty($_REQUEST['action']) || !in_array($_REQUEST['action'], array('dlattach''jsoption''.xml''xmlhttp''verificationcode')))
{
// Log this user as online.
writeLog();

// Track forum statistics and hits...?
if (!empty($modSettings['hitStats']))
trackStats(array('hits' => '+'));
}

// Load SimplePortal.
sportal_init();

// Is the forum in maintenance mode? (doesn't apply to administrators.)
if (!empty($maintenance) && !allowedTo('admin_forum'))
{
// You can only login.... otherwise, you're getting the "maintenance mode" display.
if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'login2' || $_REQUEST['action'] == 'logout'))
{
require_once($sourcedir '/LogInOut.php');
return $_REQUEST['action'] == 'login2' 'Login2' 'Logout';
}
// Don't even try it, sonny.
else
{
require_once($sourcedir '/Subs-Auth.php');
return 'InMaintenance';
}
}
// If guest access is off, a guest can only do one of the very few following actions.
elseif (empty($modSettings['allow_guestAccess']) && !(!empty($_REQUEST['action']) && $_REQUEST['action'] == 'dlattach' && !empty($_REQUEST['type']) && $_REQUEST['type'] == 'avatar') && !(empty($_REQUEST['action']) && empty($board) && empty($topic) && $modSettings['sp_portal_mode'] == 1) && !(!empty($_REQUEST['action']) && $_REQUEST['action'] == 'dlattach' && !empty($_REQUEST['type']) && $_REQUEST['type'] == 'avatar') && !(empty($_REQUEST['action']) && empty($board) && empty($topic) && $modSettings['sp_portal_mode'] == 1) && $user_info['is_guest'] && (!isset($_REQUEST['action']) || !in_array($_REQUEST['action'], array('coppa''login''login2''register''register2''reminder''activate''help''smstats''.xml''mailq''verificationcode''openidreturn',))))
{
require_once($sourcedir '/Subs-Auth.php');
return 'KickGuest';
}
// Check for arcade actions
// IBPArcade v2.x.x Games support
elseif (isset($_REQUEST['act']) && strtolower($_REQUEST['act']) == 'arcade')
{
$_REQUEST['action'] = 'arcade';
$_REQUEST['gametype'] = 2;

if (isset($_REQUEST['do']) && $_REQUEST['do'] == 'newscore')
$_REQUEST['sa'] = 'submit';

require_once($sourcedir '/Arcade.php');
return 'Arcade';   
}
// IBPArcade v3.x.x Games support
elseif (isset($_REQUEST['autocom']) && $_REQUEST['autocom'] == 'arcade')
{
$_REQUEST['action'] = 'arcade';
$_REQUEST['gametype'] = 3

if (isset($_REQUEST['do']) && $_REQUEST['do'] == 'savescore')
$_REQUEST['sa'] = 'submit';

elseif (isset($_REQUEST['do']) && $_REQUEST['do'] = 'verifyscore')
$_REQUEST['sa'] = 'ibpverify';

require_once($sourcedir '/Arcade.php');
return 'Arcade';   
}
elseif (isset($_POST['sessdo']))
{
$_REQUEST['action'] = 'arcade';

if (isset($_POST['sessdo']) && $_POST['sessdo'] == 'burn')
{
$_REQUEST['sa'] = 'submit';
$_REQUEST['gametype'] = 4
}

else
$_REQUEST['sa'] = 'v3verify';

require_once($sourcedir '/Arcade.php');
return 'Arcade';   
}
elseif (isset($_REQUEST['play']))
{
$_REQUEST['game'] = $_REQUEST['play'];
unset($_REQUEST['play']);
$_REQUEST['sa'] = 'play';

require_once($sourcedir '/Arcade.php');
return 'Arcade';
}
elseif (isset($_REQUEST['highscore']))
{
$_REQUEST['game'] = $_REQUEST['highscore'];
unset($_REQUEST['highscore']);
$_REQUEST['sa'] = 'highscore';

require_once($sourcedir '/Arcade.php');
return 'Arcade';
}
elseif (isset($_REQUEST['game']) && !isset($_REQUEST['action']))
{
require_once($sourcedir '/Arcade.php');
return 'Arcade';
}
elseif (empty($_REQUEST['action']))
{
// Go catch it boy! Catch it!
$sp_action sportal_catch_action();
if ($sp_action)
return $sp_action;

// Action and board are both empty... BoardIndex!
if (empty($board) && empty($topic))
{
require_once($sourcedir '/BoardIndex.php');
return 'BoardIndex';
}
// Topic is empty, and action is empty.... MessageIndex!
elseif (empty($topic))
{
require_once($sourcedir '/MessageIndex.php');
return 'MessageIndex';
}
// Board is not empty... topic is not empty... action is empty.. Display!
else
{
require_once($sourcedir '/Display.php');
return 'Display';
}
}

// Here's the monstrous $_REQUEST['action'] array - $_REQUEST['action'] => array($file, $function).
$actionArray = array(


CrazyZone - My SMF Forum


From the difficult the hardening of the man you can see

kat

Phew...

That's not the problem, then.

A few sites have been hacked, lately.

Thankfully, your seems OK. :)

What mods are installed on your forum?

Have any been installed recently?

edi67

Quote from: K@ on January 14, 2011, 11:00:28 AM
Phew...

That's not the problem, then.

A few sites have been hacked, lately.

Thankfully, your seems OK. :)

What mods are installed on your forum?

Have any been installed recently?

no mod installed recently

server support told me this:
Quote>time php index.php
44.589u 17.001s 1:02.04 99.2% 509+2413k 0+0io 0pf+0w

Current configuration requires near 45 seconds only to execute index.php. It's very long.

> Premature end of script headers: php

This line indicates that script has been interrupted or returns invalid data. In our case possibility of the first is higher. The reason why is behaves like this your database becomes large and application uses it can't use it in sufficient way.

and also i have a lot of such errore in site log:

[Fri Jan 14 20:16:35 2011] [error] [client 89.248.174.76] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 20:19:25 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 20:23:50 2011] [error] [client 151.48.227.135] Premature end of script headers: php
[Fri Jan 14 20:23:55 2011] [error] [client 151.48.227.135] Premature end of script headers: php
[Fri Jan 14 20:25:40 2011] [error] [client 77.89.37.227] Premature end of script headers: php
[Fri Jan 14 20:27:16 2011] [error] [client 123.125.71.97] Premature end of script headers: php
[Fri Jan 14 20:27:35 2011] [error] [client 220.181.108.183] Premature end of script headers: php
[Fri Jan 14 20:27:40 2011] [error] [client 77.89.37.227] Premature end of script headers: php


i cannot find the script that made me this problem
CrazyZone - My SMF Forum


From the difficult the hardening of the man you can see

kat

Trouble is, all that error says, in reality, is that "It doesn't work".


Nothing specific, sadly.

"Premature end of script headers" means, simply, that the script has encountered an error and is sending output before the client browser has got the "Content-type: text/html\n\n" header.

Now, then.

Your host says that the problem's with index.php.

Trouble is, well... Have a look through the files in your installation.

WHICH index.php?

The one in the root, one would assume, as you have "referer: http://crazyzone.biz/index.php", there.

Can you ask them to check that out?

If it is that one, would you attach it, to your next post, so we can take a look at it?

edi67

THXXXX so much for you help to me, i cannot solve problem aand it big problem for me.
i Attach you here index.php ( root ) and my index.template.php (default theme)

Support made me add one control for check all error generated in my site i made this operation:

i create one file called my.cnf to view what is happening at  site with such 2 line:
log_slow_queries=/var/log/mysqld.slow.log
long_query_time=10


after that i restart my server with this comand usr/local/etc/rc.d/mysql-server restart


And began to return me back a lot of these errors:

[Fri Jan 14 13:37:17 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/flags/.png, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 13:37:18 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/immagini/browsericons/Baiduspider+(+http:, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 13:37:18 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/immagini/browsericons/Baiduspider+(+http:, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 13:37:25 2011] [error] [client 84.227.14.140] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?topic=55316.0
[Fri Jan 14 13:38:55 2011] [error] [client 122.173.168.157] Premature end of script headers: php, referer: http://www.simplemachines.org/community/index.php?topic=417178.0;topicseen
[Fri Jan 14 13:46:06 2011] [error] [client 82.193.15.169] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=pm
[Fri Jan 14 13:46:09 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/flags/.png, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 13:46:09 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/immagini/browsericons/Baiduspider+(+http:, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 13:46:11 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 13:46:13 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/flags/.png, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 13:46:13 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/flags/.png, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 13:46:13 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/immagini/browsericons/Baiduspider+(+http:, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 13:49:05 2011] [error] [client 93.38.84.34] Premature end of script headers: php
[Fri Jan 14 13:49:26 2011] [warn] [client 82.193.15.169] Timeout waiting for output from CGI script /home/crazyzone/data/php-bin/php, referer: http://crazyzone.biz/index.php?action=pm
[Fri Jan 14 13:49:26 2011] [error] [client 82.193.15.169] Script timed out before returning headers: php, referer: http://crazyzone.biz/index.php?action=pm
[Fri Jan 14 13:49:36 2011] [error] [client 79.9.252.81] Premature end of script headers: php
[Fri Jan 14 13:49:50 2011] [error] [client 79.9.252.81] Premature end of script headers: php
[Fri Jan 14 13:50:15 2011] [error] [client 79.9.252.81] Premature end of script headers: php
[Fri Jan 14 13:51:30 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 13:53:05 2011] [error] [client 93.71.24.44] Premature end of script headers: php
[Fri Jan 14 13:55:15 2011] [error] [client 95.75.18.54] Premature end of script headers: php
[Fri Jan 14 13:56:15 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 13:57:06 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 13:57:45 2011] [error] [client 65.44.220.66] Premature end of script headers: php
[Fri Jan 14 13:58:06 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 14:02:30 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?topic=55330.msg125699
[Fri Jan 14 14:02:40 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?topic=55330.msg125699
[Fri Jan 14 14:02:55 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?topic=55330.msg125699
[Fri Jan 14 14:03:06 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?topic=55330.msg125699
[Fri Jan 14 14:03:11 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?topic=55330.msg125699
[Fri Jan 14 14:03:45 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unreadreplies
[Fri Jan 14 14:03:50 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unreadreplies
[Fri Jan 14 14:04:45 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?board=78.0
[Fri Jan 14 14:04:47 2011] [error] [client 87.15.31.48] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?board=71.0
[Fri Jan 14 14:04:55 2011] [error] [client 122.173.168.157] Premature end of script headers: php, referer: http://www.simplemachines.org/community/index.php?topic=417178.0;topicseen
[Fri Jan 14 14:05:32 2011] [error] [client 87.15.31.48] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?board=71.0
[Fri Jan 14 14:05:57 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?board=71.0
[Fri Jan 14 14:07:05 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 14:08:45 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 14:10:38 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/flags/.png, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 14:10:38 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/immagini/browsericons/Baiduspider+(+http:, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 14:11:51 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 14:13:36 2011] [error] [client 204.45.133.74] Premature end of script headers: php
[Fri Jan 14 14:14:50 2011] [error] [client 86.205.103.215] Premature end of script headers: php
[Fri Jan 14 14:16:51 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 14:18:26 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 14:20:10 2011] [error] [client 79.142.68.99] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?PHPSESSID=820fa8d8ca9e5b654b2789bca3a8158d&action=register
[Fri Jan 14 14:22:45 2011] [error] [client 69.28.58.48] Premature end of script headers: php, referer: http://www.crazyzone.biz/
[Fri Jan 14 14:23:00 2011] [error] [client 69.28.58.46] Premature end of script headers: php, referer: http://crazyzone.biz/
[Fri Jan 14 14:24:42 2011] [error] [client 67.195.112.232] File does not exist: /home/crazyzone/data/www/crazyzone.biz/prova
[Fri Jan 14 14:26:15 2011] [error] [client 123.125.71.108] Premature end of script headers: php
[Fri Jan 14 14:26:40 2011] [error] [client 220.181.108.165] Premature end of script headers: php
[Fri Jan 14 14:27:40 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 14:28:56 2011] [error] [client 81.221.170.108] Premature end of script headers: php, referer: http://www.facebook.com/l.php?u=http%3A%2F%2Fcrazyzone.biz%2F&h=63285
[Fri Jan 14 14:29:01 2011] [error] [client 66.220.146.245] Premature end of script headers: php
[Fri Jan 14 14:29:20 2011] [error] [client 81.221.170.108] Premature end of script headers: php, referer: http://www.facebook.com/l.php?u=http%3A%2F%2Fcrazyzone.biz%2F&h=63285
[Fri Jan 14 14:30:10 2011] [error] [client 46.17.100.19] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 14:30:25 2011] [error] [client 81.221.170.108] Premature end of script headers: php, referer: http://www.google.it/search?hl=it&source=hp&biw=1280&bih=616&q=forum+crazyzone&aq=f&aqi=&aql=&oq=&fp=55acec968d46f591
[Fri Jan 14 14:40:45 2011] [error] [client 74.55.6.210] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 14:40:50 2011] [error] [client 79.142.68.93] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 14:41:20 2011] [error] [client 188.92.75.82] Premature end of script headers: php
[Fri Jan 14 14:46:25 2011] [error] [client 79.9.252.81] Premature end of script headers: php
[Fri Jan 14 14:46:47 2011] [error] [client 93.58.108.45] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 14:46:47 2011] [error] [client 93.58.108.45] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 14:47:50 2011] [error] [client 220.181.94.220] Premature end of script headers: php
[Fri Jan 14 14:49:45 2011] [error] [client 220.181.94.220] Premature end of script headers: php
[Fri Jan 14 14:53:51 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 14:55:36 2011] [error] [client 93.38.62.229] Premature end of script headers: php
[Fri Jan 14 15:01:00 2011] [error] [client 217.175.54.59] Premature end of script headers: php
[Fri Jan 14 15:04:46 2011] [error] [client 62.178.81.187] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:11:37 2011] [error] [client 84.227.14.140] File does not exist: /home/crazyzone/data/www/crazyzone.biz/[url]http:, referer: http://crazyzone.biz/index.php?topic=54698.0
[Fri Jan 14 15:12:46 2011] [error] [client 79.16.227.93] Premature end of script headers: php
[Fri Jan 14 15:13:45 2011] [error] [client 95.225.58.199] Premature end of script headers: php
[Fri Jan 14 15:14:45 2011] [error] [client 95.225.58.199] Premature end of script headers: php
[Fri Jan 14 15:14:56 2011] [error] [client 109.116.212.187] Premature end of script headers: php
[Fri Jan 14 15:18:20 2011] [error] [client 84.234.75.223] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:18:30 2011] [error] [client 93.38.62.229] Premature end of script headers: php
[Fri Jan 14 15:18:56 2011] [error] [client 122.192.166.134] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:19:20 2011] [error] [client 122.192.166.134] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:19:30 2011] [error] [client 122.192.166.132] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:19:35 2011] [error] [client 122.192.166.135] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:19:46 2011] [error] [client 122.192.166.137] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:20:15 2011] [error] [client 84.234.75.223] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:20:35 2011] [error] [client 208.96.213.149] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:20:46 2011] [error] [client 122.192.166.134] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:20:55 2011] [error] [client 122.192.166.132] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:21:05 2011] [error] [client 122.192.166.135] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:21:15 2011] [error] [client 122.192.166.137] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:21:26 2011] [error] [client 122.192.166.145] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:21:35 2011] [error] [client 122.192.166.147] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:21:45 2011] [error] [client 122.192.166.143] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:22:21 2011] [error] [client 178.74.69.6] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:22:50 2011] [error] [client 122.192.166.132] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:23:05 2011] [error] [client 122.192.166.134] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:23:16 2011] [error] [client 122.192.166.132] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:23:26 2011] [error] [client 122.192.166.135] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:23:35 2011] [error] [client 122.192.166.137] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:23:41 2011] [error] [client 111.1.32.53] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:23:55 2011] [error] [client 122.192.166.150] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:24:05 2011] [error] [client 122.192.166.149] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:24:15 2011] [error] [client 111.1.32.52] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:24:26 2011] [error] [client 65.46.53.202] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:24:40 2011] [error] [client 178.74.69.6] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:24:50 2011] [error] [client 123.125.71.102] Premature end of script headers: php
[Fri Jan 14 15:25:00 2011] [error] [client 220.181.108.181] Premature end of script headers: php
[Fri Jan 14 15:25:11 2011] [error] [client 200.129.25.14] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:25:25 2011] [error] [client 122.192.166.145] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:25:30 2011] [error] [client 122.192.166.147] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:25:40 2011] [error] [client 122.192.166.143] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:25:45 2011] [error] [client 65.46.53.202] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:25:56 2011] [error] [client 85.205.253.204] Premature end of script headers: php
[Fri Jan 14 15:26:05 2011] [error] [client 82.199.137.20] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:26:50 2011] [error] [client 192.167.12.18] Premature end of script headers: php
[Fri Jan 14 15:26:56 2011] [error] [client 192.167.12.18] Premature end of script headers: php
[Fri Jan 14 15:27:01 2011] [error] [client 192.167.12.18] Premature end of script headers: php
[Fri Jan 14 15:29:23 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?action=admin
[Fri Jan 14 15:32:33 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/flags/.png, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 15:32:34 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/immagini/browsericons/Baiduspider+(+http:, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 15:32:34 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/immagini/browsericons/Baiduspider+(+http:, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 15:34:00 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 15:36:55 2011] [error] [client 91.201.66.135] Premature end of script headers: php, referer: http://xn--c1ab0c.net
[Fri Jan 14 15:40:05 2011] [error] [client 89.248.174.76] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 15:40:20 2011] [error] [client 79.142.68.99] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?PHPSESSID=820fa8d8ca9e5b654b2789bca3a8158d&action=register
[Fri Jan 14 15:40:59 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:40:59 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:40:59 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:40:59 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:42:10 2011] [error] [client 79.50.80.150] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?topic=45586.0
[Fri Jan 14 15:43:20 2011] [error] [client 79.40.135.12] Premature end of script headers: php
[Fri Jan 14 15:43:43 2011] [error] [client 79.50.80.150] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?topic=45586.0
[Fri Jan 14 15:44:25 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:44:25 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:44:26 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:44:26 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:44:45 2011] [error] [client 192.167.12.18] Premature end of script headers: php
[Fri Jan 14 15:44:54 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:44:54 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:44:54 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:44:54 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:45:44 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:45:44 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:46:36 2011] [error] [client 204.45.133.74] Premature end of script headers: php
[Fri Jan 14 15:46:46 2011] [error] [client 79.18.0.120] Premature end of script headers: php, referer: http://www.google.it/search?sourceid=chrome&ie=UTF-8&q=crazyzone
[Fri Jan 14 15:47:11 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:47:11 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:47:11 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:47:11 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:47:30 2011] [error] [client 79.18.0.120] Premature end of script headers: php, referer: http://www.google.it/search?sourceid=chrome&ie=UTF-8&q=crazyzone
[Fri Jan 14 15:48:25 2011] [error] [client 195.128.48.170] Premature end of script headers: php
[Fri Jan 14 15:49:03 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:49:03 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:49:03 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:49:04 2011] [error] [client 79.44.80.161] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:50:22 2011] [error] [client 83.216.165.152] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:50:22 2011] [error] [client 83.216.165.152] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 15:52:25 2011] [error] [client 82.115.172.7] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?topic=32286.0
[Fri Jan 14 15:52:30 2011] [error] [client 82.115.172.7] Premature end of script headers: php
[Fri Jan 14 15:54:35 2011] [error] [client 87.9.72.234] Premature end of script headers: php
[Fri Jan 14 15:55:20 2011] [error] [client 87.9.72.234] Premature end of script headers: php
[Fri Jan 14 16:01:46 2011] [error] [client 93.58.108.45] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 16:01:46 2011] [error] [client 93.58.108.45] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 16:05:16 2011] [error] [client 84.227.14.140] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 16:05:16 2011] [error] [client 84.227.14.140] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 16:05:44 2011] [error] [client 84.227.14.140] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 16:05:44 2011] [error] [client 84.227.14.140] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 16:09:10 2011] [error] [client 124.64.110.174] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 16:11:05 2011] [error] [client 84.227.14.140] File does not exist: /home/crazyzone/data/www/crazyzone.biz/[url]http:, referer: http://crazyzone.biz/index.php?topic=54698.0
[Fri Jan 14 16:15:49 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif
[Fri Jan 14 16:15:50 2011] [error] [client 204.45.133.74] Premature end of script headers: php
[Fri Jan 14 16:16:26 2011] [error] [client 87.0.218.243] Premature end of script headers: php
[Fri Jan 14 16:17:30 2011] [error] [client 87.14.149.207] Premature end of script headers: php
[Fri Jan 14 16:19:21 2011] [error] [client 87.14.149.207] Premature end of script headers: php, referer: http://www.google.it/
[Fri Jan 14 16:22:15 2011] [warn] [client 87.14.149.207] Timeout waiting for output from CGI script /home/crazyzone/data/php-bin/php
[Fri Jan 14 16:22:15 2011] [error] [client 87.14.149.207] Script timed out before returning headers: php
[Fri Jan 14 16:22:30 2011] [error] [client 95.225.58.199] Premature end of script headers: php
[Fri Jan 14 16:23:45 2011] [error] [client 123.125.71.95] Premature end of script headers: php
[Fri Jan 14 16:24:05 2011] [error] [client 220.181.108.181] Premature end of script headers: php
[Fri Jan 14 16:34:05 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 16:34:16 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 16:35:05 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 16:35:16 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 16:39:40 2011] [error] [client 194.20.78.33] Premature end of script headers: php
[Fri Jan 14 16:50:16 2011] [error] [client 82.56.108.51] Premature end of script headers: php
[Fri Jan 14 16:51:10 2011] [error] [client 82.56.108.51] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=1&ved=0CBcQFjAA&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=crazyzone.biz&ei=ilQwTar4Os6Uswbjz5SRCg&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg
[Fri Jan 14 16:51:20 2011] [error] [client 82.56.108.51] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=1&ved=0CBcQFjAA&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=crazyzone.biz&ei=ilQwTar4Os6Uswbjz5SRCg&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg
[Fri Jan 14 16:51:43 2011] [error] [client 93.50.221.1] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?board=61.0
[Fri Jan 14 16:52:03 2011] [error] [client 93.50.221.1] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?topic=55246.0
[Fri Jan 14 16:52:30 2011] [error] [client 89.97.124.16] Premature end of script headers: php
[Fri Jan 14 16:53:25 2011] [error] [client 86.205.103.215] Premature end of script headers: php
[Fri Jan 14 16:53:40 2011] [error] [client 79.40.135.12] Premature end of script headers: php
[Fri Jan 14 16:54:10 2011] [error] [client 82.56.108.51] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=1&ved=0CBcQFjAA&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=crazyzone.biz&ei=PlUwTf2CDMPHswa0r9n4CQ&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg
[Fri Jan 14 16:55:00 2011] [error] [client 62.10.93.11] Premature end of script headers: php
[Fri Jan 14 16:59:15 2011] [error] [client 109.230.217.18] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 16:59:50 2011] [error] [client 79.142.68.99] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?PHPSESSID=820fa8d8ca9e5b654b2789bca3a8158d&action=register
[Fri Jan 14 17:02:25 2011] [error] [client 79.40.135.12] Premature end of script headers: php
[Fri Jan 14 17:04:05 2011] [warn] [client 124.195.199.121] Timeout waiting for output from CGI script /home/crazyzone/data/php-bin/php, referer: http://www.warez-bb.org/memberlist.php
[Fri Jan 14 17:04:05 2011] [error] [client 124.195.199.121] Script timed out before returning headers: php, referer: http://www.warez-bb.org/memberlist.php
[Fri Jan 14 17:04:35 2011] [error] [client 87.6.109.82] Premature end of script headers: php, referer: http://www.google.it/search?sourceid=chrome&ie=UTF-8&q=crazyzone.biz%C3%B9
[Fri Jan 14 17:04:40 2011] [error] [client 87.6.109.82] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=1&ved=0CBcQFjAA&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=crazyzone.biz&ei=vVcwTdCsJoqfOt7wyZsB&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg&sig2=EjKy37nNTGB-Nuagq6-NAg
[Fri Jan 14 17:05:31 2011] [error] [client 87.6.109.82] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=1&ved=0CBcQFjAA&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=crazyzone.biz&ei=vVcwTdCsJoqfOt7wyZsB&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg&sig2=EjKy37nNTGB-Nuagq6-NAg
[Fri Jan 14 17:05:37 2011] [error] [client 193.200.150.239] File does not exist: /home/crazyzone/data/www/crazyzone.biz/immagini/browsericons/Googlebot, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 17:05:38 2011] [error] [client 193.200.150.239] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/flags/.png, referer: http://crazyzone.biz/index.php?action=who
[Fri Jan 14 17:06:10 2011] [error] [client 87.11.95.231] Premature end of script headers: php, referer: http://www.google.it/imgres?imgurl=http://crazyzone.biz/Themes/default/images/ImagesOnBoard/regole.gif&imgrefurl=http://crazyzone.biz/index.php&usg=__pZBRd3qjfns_OKVMXstJSzK1M9M=&h=50&w=50&sz=3&hl=it&start=0&sig2=-2T7_eYXoihtRDmbO1PFGQ&zoom=1&tbnid=yd_xzXxxTQMIYM:&tbnh=50&tbnw=50&ei=ElgwTbv9EMS54gauuIWKCg&prev=/images%3Fq%3DREGOLE%26hl%3Dit%26sa%3DG%26biw%3D1366%26bih%3D624%26gbv%3D2%26tbs%3Disch:1,isz:i&itbs=1&iact=hc&vpx=455&vpy=226&dur=163&hovh=50&hovw=50&tx=83&ty=13&oei=_VcwTebrK8OxtAawvtiVCg&esq=12&page=1&ndsp=24&ved=1t:429,r:2,s:0
[Fri Jan 14 17:06:36 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 17:06:46 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 17:07:10 2011] [error] [client 186.125.228.75] Premature end of script headers: php, referer: http://www.simplemachines.org/community/index.php?topic=300396.msg2913432;topicseen
[Fri Jan 14 17:07:20 2011] [error] [client 79.43.99.169] Premature end of script headers: php
[Fri Jan 14 17:07:45 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 17:07:50 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 17:08:10 2011] [error] [client 186.125.228.75] Premature end of script headers: php
[Fri Jan 14 17:10:50 2011] [error] [client 79.43.99.169] Premature end of script headers: php, referer: http://www.google.it/search?hl=it&source=hp&biw=&bih=&q=crazyzone.biz&aq=1&aqi=g3&aql=&oq=Crazyzon&fp=55acec968d46f591
[Fri Jan 14 17:10:55 2011] [error] [client 79.43.99.169] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=1&ved=0CBcQFjAA&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=crazyzone.biz&ei=KlkwTb_wBZDKswayit2bCg&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg
[Fri Jan 14 17:11:45 2011] [error] [client 87.14.247.25] Premature end of script headers: php
[Fri Jan 14 17:11:55 2011] [error] [client 77.88.43.26] Premature end of script headers: php
[Fri Jan 14 17:12:20 2011] [error] [client 87.14.247.25] Premature end of script headers: php
[Fri Jan 14 17:15:45 2011] [error] [client 87.2.214.131] Premature end of script headers: php
[Fri Jan 14 17:16:26 2011] [error] [client 87.2.214.131] Premature end of script headers: php
[Fri Jan 14 17:17:09 2011] [error] [client 151.50.7.165] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/css/style.css, referer: http://crazyzone.biz/index.php?yshout&file=home&history
[Fri Jan 14 17:19:10 2011] [error] [client 87.12.160.87] Premature end of script headers: php
[Fri Jan 14 17:20:10 2011] [error] [client 87.12.160.87] Premature end of script headers: php
[Fri Jan 14 17:21:10 2011] [error] [client 87.12.160.87] Premature end of script headers: php
[Fri Jan 14 17:24:19 2011] [error] [client 208.80.194.29] File does not exist: /home/crazyzone/data/www/crazyzone.biz/*
[Fri Jan 14 17:24:51 2011] [error] [client 123.125.71.100] Premature end of script headers: php
[Fri Jan 14 17:25:15 2011] [error] [client 89.119.251.40] Premature end of script headers: php
[Fri Jan 14 17:25:20 2011] [error] [client 89.119.251.40] Premature end of script headers: php
[Fri Jan 14 17:25:26 2011] [error] [client 89.119.251.40] Premature end of script headers: php
[Fri Jan 14 17:25:31 2011] [error] [client 89.119.251.40] Premature end of script headers: php
[Fri Jan 14 17:25:36 2011] [error] [client 220.181.108.179] Premature end of script headers: php
[Fri Jan 14 17:26:10 2011] [error] [client 89.119.251.40] Premature end of script headers: php
[Fri Jan 14 17:26:16 2011] [error] [client 89.119.251.40] Premature end of script headers: php
[Fri Jan 14 17:34:25 2011] [error] [client 81.208.52.94] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unread
[Fri Jan 14 17:34:41 2011] [error] [client 81.208.52.94] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unread
[Fri Jan 14 17:35:50 2011] [error] [client 58.61.164.139] Premature end of script headers: php
[Fri Jan 14 17:36:35 2011] [error] [client 81.208.52.94] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unread
[Fri Jan 14 17:41:20 2011] [warn] [client 81.208.52.94] Timeout waiting for output from CGI script /home/crazyzone/data/php-bin/php, referer: http://crazyzone.biz/index.php?action=unread
[Fri Jan 14 17:41:20 2011] [error] [client 81.208.52.94] Script timed out before returning headers: php, referer: http://crazyzone.biz/index.php?action=unread
[Fri Jan 14 17:41:30 2011] [error] [client 81.208.52.94] php-cgi in malloc(): warning: recursive call, referer: http://crazyzone.biz/index.php?action=unread
[Fri Jan 14 17:42:24 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif
[Fri Jan 14 17:43:21 2011] [error] [client 74.55.6.210] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 17:44:20 2011] [error] [client 124.115.1.8] Premature end of script headers: php
[Fri Jan 14 17:51:10 2011] [error] [client 81.208.52.94] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unread;start=50
[Fri Jan 14 17:56:00 2011] [error] [client 93.71.32.57] Premature end of script headers: php
[Fri Jan 14 17:57:40 2011] [error] [client 87.16.249.40] Premature end of script headers: php
[Fri Jan 14 18:02:50 2011] [error] [client 79.40.135.12] Premature end of script headers: php
[Fri Jan 14 18:03:05 2011] [error] [client 79.40.135.12] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=2&ved=0CB4QFjAB&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=CRAZYZONE&ei=amUwTeuFKomdOtPBma0K&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg
[Fri Jan 14 18:03:16 2011] [error] [client 210.51.37.110] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 18:03:49 2011] [error] [client 87.0.218.243] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?topic=32286.0
[Fri Jan 14 18:03:55 2011] [error] [client 79.40.135.12] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=2&ved=0CB4QFjAB&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=CRAZYZONE&ei=amUwTeuFKomdOtPBma0K&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg
[Fri Jan 14 18:06:26 2011] [error] [client 95.74.48.110] Premature end of script headers: php
[Fri Jan 14 18:07:16 2011] [error] [client 95.74.48.110] Premature end of script headers: php
[Fri Jan 14 18:10:01 2011] [error] [client 79.43.99.169] Premature end of script headers: php
[Fri Jan 14 18:10:45 2011] [error] [client 93.71.32.57] Premature end of script headers: php
[Fri Jan 14 18:12:51 2011] [error] [client 125.27.12.70] Premature end of script headers: php, referer: http://www.simplemachines.org/community/index.php?topic=395161.msg2739850
[Fri Jan 14 18:13:23 2011] [error] [client 79.50.80.150] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?board=66.1150
[Fri Jan 14 18:13:33 2011] [warn] [client 93.71.32.57] Timeout waiting for output from CGI script /home/crazyzone/data/php-bin/php
[Fri Jan 14 18:13:33 2011] [error] [client 93.71.32.57] Script timed out before returning headers: php
[Fri Jan 14 18:13:40 2011] [error] [client 79.19.120.74] Premature end of script headers: php
[Fri Jan 14 18:14:11 2011] [error] [client 125.27.12.70] Premature end of script headers: php, referer: http://www.simplemachines.org/community/index.php?topic=395161.msg2739850
[Fri Jan 14 18:14:21 2011] [error] [client 79.19.120.74] Premature end of script headers: php
[Fri Jan 14 18:15:06 2011] [error] [client 93.71.32.57] Premature end of script headers: php
[Fri Jan 14 18:15:16 2011] [error] [client 93.71.32.57] Premature end of script headers: php
[Fri Jan 14 18:15:35 2011] [error] [client 93.71.32.57] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=1&ved=0CBcQFjAA&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=CRAZYZONE.BIZ&ei=SmgwTZ22KcqSOvDJ6JsB&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg
[Fri Jan 14 18:18:51 2011] [error] [client 93.71.32.57] Premature end of script headers: php
[Fri Jan 14 18:19:35 2011] [error] [client 79.142.68.99] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?PHPSESSID=820fa8d8ca9e5b654b2789bca3a8158d&action=register
[Fri Jan 14 18:22:50 2011] [error] [client 67.202.35.128] Premature end of script headers: php
[Fri Jan 14 18:23:26 2011] [error] [client 67.202.35.128] Premature end of script headers: php
[Fri Jan 14 18:24:20 2011] [error] [client 151.59.151.67] Premature end of script headers: php
[Fri Jan 14 18:24:46 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 18:25:40 2011] [error] [client 151.59.151.67] Premature end of script headers: php
[Fri Jan 14 18:26:26 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 18:27:20 2011] [error] [client 123.125.71.114] Premature end of script headers: php
[Fri Jan 14 18:27:45 2011] [error] [client 220.181.108.170] Premature end of script headers: php
[Fri Jan 14 18:27:56 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 18:28:10 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 18:28:35 2011] [error] [client 79.1.230.57] Premature end of script headers: php
[Fri Jan 14 18:29:01 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 18:29:16 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 18:29:54 2011] [error] [client 94.63.246.2] File does not exist: /home/crazyzone/data/www/crazyzone.biz/recordings
[Fri Jan 14 18:37:25 2011] [error] [client 149.244.249.60] Premature end of script headers: php
[Fri Jan 14 18:39:20 2011] [error] [client 212.117.174.33] Premature end of script headers: php, referer: http://www.natali-basarab.com
[Fri Jan 14 18:40:01 2011] [error] [client 178.32.81.224] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 18:48:15 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unread
[Fri Jan 14 18:48:25 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unread
[Fri Jan 14 18:48:35 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unread
[Fri Jan 14 18:49:20 2011] [error] [client 93.71.32.57] Premature end of script headers: php
[Fri Jan 14 18:52:56 2011] [error] [client 87.15.172.172] Premature end of script headers: php
[Fri Jan 14 18:53:21 2011] [error] [client 87.15.172.172] Premature end of script headers: php
[Fri Jan 14 18:55:00 2011] [error] [client 87.15.31.48] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unread
[Fri Jan 14 18:56:10 2011] [error] [client 79.43.99.169] Premature end of script headers: php
[Fri Jan 14 18:56:35 2011] [error] [client 151.59.151.67] Premature end of script headers: php
[Fri Jan 14 18:56:55 2011] [error] [client 151.59.151.67] Premature end of script headers: php
[Fri Jan 14 18:57:15 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 18:58:10 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 18:59:35 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:01:20 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:07:35 2011] [error] [client 210.231.87.216] Premature end of script headers: php
[Fri Jan 14 19:07:55 2011] [error] [client 210.231.87.216] Premature end of script headers: php
[Fri Jan 14 19:08:40 2011] [error] [client 91.208.195.68] Premature end of script headers: php
[Fri Jan 14 19:08:48 2011] [error] [client 164.132.79.11] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinkdx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 19:08:49 2011] [error] [client 164.132.79.11] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Themes/default/images/sp/blinksx.gif, referer: http://crazyzone.biz/PortalStandalone.php
[Fri Jan 14 19:14:35 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 19:14:41 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 19:15:05 2011] [error] [client 82.54.251.198] Premature end of script headers: php
[Fri Jan 14 19:15:15 2011] [error] [client 66.249.66.11] Premature end of script headers: php
[Fri Jan 14 19:15:30 2011] [error] [client 82.54.251.198] Premature end of script headers: php
[Fri Jan 14 19:15:41 2011] [error] [client 82.54.251.198] Premature end of script headers: php
[Fri Jan 14 19:15:55 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 19:16:00 2011] [error] [client 95.108.142.138] Premature end of script headers: php
[Fri Jan 14 19:17:01 2011] [error] [client 151.76.2.184] Premature end of script headers: php
[Fri Jan 14 19:18:01 2011] [error] [client 80.74.176.55] Premature end of script headers: php
[Fri Jan 14 19:18:51 2011] [error] [client 80.74.176.55] Premature end of script headers: php
[Fri Jan 14 19:19:56 2011] [error] [client 151.59.151.67] Premature end of script headers: php
[Fri Jan 14 19:20:35 2011] [error] [client 151.59.151.67] Premature end of script headers: php
[Fri Jan 14 19:21:08 2011] [warn] [client 151.76.2.184] Timeout waiting for output from CGI script /home/crazyzone/data/php-bin/php
[Fri Jan 14 19:21:08 2011] [error] [client 151.76.2.184] Script timed out before returning headers: php
[Fri Jan 14 19:21:38 2011] [error] [client 82.84.186.207] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?action=unread
[Fri Jan 14 19:22:20 2011] [error] [client 184.73.172.213] Premature end of script headers: php
[Fri Jan 14 19:23:16 2011] [error] [client 119.63.199.103] Premature end of script headers: php
[Fri Jan 14 19:23:30 2011] [error] [client 208.80.194.26] File does not exist: /home/crazyzone/data/www/crazyzone.biz/*
[Fri Jan 14 19:24:05 2011] [error] [client 93.36.132.231] Premature end of script headers: php
[Fri Jan 14 19:24:10 2011] [error] [client 151.59.151.67] Premature end of script headers: php
[Fri Jan 14 19:24:26 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:29:30 2011] [error] [client 109.52.169.249] Premature end of script headers: php
[Fri Jan 14 19:30:15 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:31:36 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:31:55 2011] [error] [client 87.16.249.40] Premature end of script headers: php
[Fri Jan 14 19:33:11 2011] [error] [client 151.48.227.135] Premature end of script headers: php
[Fri Jan 14 19:33:16 2011] [error] [client 151.48.227.135] Premature end of script headers: php
[Fri Jan 14 19:34:04 2011] [error] [client 109.55.76.249] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?board=58.0
[Fri Jan 14 19:34:45 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:36:10 2011] [error] [client 109.55.76.249] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?board=58.0
[Fri Jan 14 19:36:20 2011] [error] [client 123.125.71.105] Premature end of script headers: php
[Fri Jan 14 19:36:25 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:36:58 2011] [error] [client 151.59.151.67] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?board=58.0
[Fri Jan 14 19:37:00 2011] [error] [client 220.181.108.186] Premature end of script headers: php
[Fri Jan 14 19:39:25 2011] [error] [client 79.142.68.99] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?PHPSESSID=820fa8d8ca9e5b654b2789bca3a8158d&action=register
[Fri Jan 14 19:40:25 2011] [error] [client 79.50.63.130] Premature end of script headers: php
[Fri Jan 14 19:40:36 2011] [error] [client 79.37.250.88] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf/' + smileys[row][i][1] + ', referer: http://crazyzone.biz/index.php?action=profile;u=12
[Fri Jan 14 19:41:10 2011] [error] [client 79.43.99.169] Premature end of script headers: php
[Fri Jan 14 19:41:50 2011] [error] [client 79.50.63.130] Premature end of script headers: php
[Fri Jan 14 19:42:06 2011] [error] [client 79.50.63.130] Premature end of script headers: php
[Fri Jan 14 19:42:11 2011] [error] [client 79.50.63.130] Premature end of script headers: php
[Fri Jan 14 19:42:21 2011] [error] [client 79.50.63.130] Premature end of script headers: php
[Fri Jan 14 19:43:01 2011] [error] [client 85.187.233.74] Premature end of script headers: php
[Fri Jan 14 19:43:06 2011] [error] [client 79.43.99.169] Premature end of script headers: php
[Fri Jan 14 19:43:35 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:44:06 2011] [error] [client 79.43.99.169] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=1&ved=0CBcQFjAA&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=crazyzone%20forum&ei=Cn0wTZS2E4qWOunP1KwK&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg
[Fri Jan 14 19:44:11 2011] [error] [client 79.43.99.169] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=1&ved=0CBcQFjAA&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=crazyzone%20forum&ei=Cn0wTZS2E4qWOunP1KwK&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg
[Fri Jan 14 19:45:00 2011] [error] [client 91.208.195.68] Premature end of script headers: php
[Fri Jan 14 19:46:15 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:47:11 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:49:55 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:51:30 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:51:51 2011] [error] [client 173.224.218.118] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 19:54:02 2011] [error] [client 210.51.13.174] File does not exist: /home/crazyzone/data/www/crazyzone.biz/phpmyadmin
[Fri Jan 14 19:54:03 2011] [error] [client 210.51.13.174] File does not exist: /home/crazyzone/data/www/crazyzone.biz/phpMyAdmin
[Fri Jan 14 19:55:05 2011] [error] [client 79.43.99.169] Premature end of script headers: php
[Fri Jan 14 19:55:21 2011] [error] [client 79.43.99.169] Premature end of script headers: php
[Fri Jan 14 19:55:50 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 19:59:45 2011] [error] [client 79.43.99.169] Premature end of script headers: php
[Fri Jan 14 20:00:05 2011] [error] [client 79.43.99.169] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=1&ved=0CBcQFjAA&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=crazyzone%20forum&ei=1IAwTaWtM86UOpL3hZwB&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg
[Fri Jan 14 20:00:55 2011] [error] [client 79.43.99.169] Premature end of script headers: php, referer: http://www.google.it/url?sa=t&source=web&cd=1&ved=0CBcQFjAA&url=http%3A%2F%2Fwww.crazyzone.biz%2F&rct=j&q=crazyzone%20forum&ei=1IAwTaWtM86UOpL3hZwB&usg=AFQjCNEYtDU8uEgNa6HKpeDe56t6nuEYJg
[Fri Jan 14 20:03:15 2011] [error] [client 95.74.63.3] Premature end of script headers: php
[Fri Jan 14 20:07:36 2011] [error] [client 62.10.198.75] Premature end of script headers: php
[Fri Jan 14 20:07:46 2011] [error] [client 86.205.103.215] Premature end of script headers: php
[Fri Jan 14 20:08:15 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 20:08:20 2011] [error] [client 62.10.198.75] Premature end of script headers: php
[Fri Jan 14 20:09:36 2011] [error] [client 78.14.224.208] File does not exist: /home/crazyzone/data/www/crazyzone.biz/Smileys/smf
[Fri Jan 14 20:14:25 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 20:16:35 2011] [error] [client 89.248.174.76] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 20:19:25 2011] [error] [client 213.82.29.55] Premature end of script headers: php
[Fri Jan 14 20:23:50 2011] [error] [client 151.48.227.135] Premature end of script headers: php
[Fri Jan 14 20:23:55 2011] [error] [client 151.48.227.135] Premature end of script headers: php
[Fri Jan 14 20:25:40 2011] [error] [client 77.89.37.227] Premature end of script headers: php
[Fri Jan 14 20:27:16 2011] [error] [client 123.125.71.97] Premature end of script headers: php
[Fri Jan 14 20:27:35 2011] [error] [client 220.181.108.183] Premature end of script headers: php
[Fri Jan 14 20:27:40 2011] [error] [client 77.89.37.227] Premature end of script headers: php
CrazyZone - My SMF Forum


From the difficult the hardening of the man you can see

kat

I'm wondering, now...

I notice that your forum is still on v2.RC1.

Quite a few bits of bugginess has been corrected, since then.

We're, like, three versions further-on, now.

Compared to RC4, RC1 was VERY buggy.

I wonder if the best solution to your problem would be to move on to RC4...?

Funny thing, though.

I can get to your homepage at http://www.crazyzone.biz without any hassles. It loads instantly. (Opera v11)

edi67

CrazyZone - My SMF Forum


From the difficult the hardening of the man you can see

cicka


kat

Let me put it this way...

If that was my forum, I'd backup EVERYTHING and upgrade to RC4.

edi67

Quote from: K@ on January 14, 2011, 03:49:58 PM
Let me put it this way...

If that was my forum, I'd backup EVERYTHING and upgrade to RC4.

Thx for suggest me but please tell me ,  now is one question importante for me there is one way for understand WHICH strange script make this PREMATURE END of SCRIPT?

[Fri Jan 14 20:16:35 2011] [error] [client 89.248.174.76] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 20:19:25 2011] [error] [client 213.82.29.55] Premature end of script headers: php


Please is very import for me try to save my actual forum before to make upgrade, i will be very glad if you can suggest me some solution.
I already disable more big mod ( chat, shoutbox, link checker ) but error continue so many times for every user it show.

some way for recognize it....please
CrazyZone - My SMF Forum


From the difficult the hardening of the man you can see

Illori

if you are considering an upgrade, i would not worry about that error and progress with a full database backup from phpmyadmin and check for new versions of your mods, then do the upgrade.

cicka

Quote from: edi67 on January 15, 2011, 10:56:32 AM
Quote from: K@ on January 14, 2011, 03:49:58 PM
Let me put it this way...

If that was my forum, I'd backup EVERYTHING and upgrade to RC4.

Thx for suggest me but please tell me ,  now is one question importante for me there is one way for understand WHICH strange script make this PREMATURE END of SCRIPT?

[Fri Jan 14 20:16:35 2011] [error] [client 89.248.174.76] Premature end of script headers: php, referer: http://crazyzone.biz/index.php
[Fri Jan 14 20:19:25 2011] [error] [client 213.82.29.55] Premature end of script headers: php


Please is very import for me try to save my actual forum before to make upgrade, i will be very glad if you can suggest me some solution.
I already disable more big mod ( chat, shoutbox, link checker ) but error continue so many times for every user it show.

some way for recognize it....please

That points to the index.php file. Is there any other error in your error log?

edi67

Quote from: Illori on January 15, 2011, 11:08:51 AM
That points to the index.php file. Is there any other error in your error log?

99% of these are same:

[Sat Jan 15 14:32:46 2011] [error] [client 93.145.8.81] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unread;start=50
[Sat Jan 15 14:33:10 2011] [error] [client 93.145.8.81] Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unread;start=50
[Sat Jan 15 14:33:40 2011] [error] [client 93.145.8.81] Premature end of script headers: php
[Sat Jan 15 14:35:30 2011] [error] [client 93.145.8.81] Premature end of script headers: php


Always Premature end of script headers: php or Premature end of script headers: php, referer: http://crazyzone.biz/index.php?action=unread;start=50

these errors 10 time every 10 or 20 minutes
CrazyZone - My SMF Forum


From the difficult the hardening of the man you can see

cicka

I am not that familiar with that version. I would repeat the same advice as the others gave above, to upgrade your forum to the rc 4.

kat

One thing that it might be worth trying, with this.

Try renaming index.php to something like index0.php and replacing it with the same file from the SMF install package/archive for RC1, if you still have it.

That MIGHT affect some of your mods, if any of them have edited that file. But, if the errors stop, we'll know where the culprit is hiding.

You can always delete it and rename that file back, if you need to.

Spoogs


Advertisement: