Status
Not open for further replies.

thongus

Active Member
63
2012
13
0
Is this the work of some sort of virus & if so how do I get rid of it:
Fatal error: Cannot redeclare frm_dl() (previously declared in /home/voidscri/public_html/index.php(1) : eval()'d code:1) in /home/voidscri/public_html/ips_kernel/classDbMysql.php(1) : eval()'d code on line 10


Please help, my coding skills leave a lot to be desired but I learn something new every day, thanks..
 
2 comments
check your index.php on root index.php should be look like this
PHP:
<?php
/**
 * <pre>
 * Invision Power Services
 * IP.Board v3.4.4
 * Main public executable wrapper.
 * Set-up and load module to run
 * Last Updated: $Date: 2013-02-26 08:08:06 -0500 (Tue, 26 Feb 2013) $
 * </pre>
 *
 * @author 		$Author: mark $
 * @copyright	(c) 2001 - 2009 Invision Power Services, Inc.
 *
 * @package		IP.Board
 *
 * @version		$Rev: 12025 $
 *
 */	

define( 'IPB_THIS_SCRIPT', 'public' );
require_once( './initdata.php' );/*noLibHook*/

require_once( IPS_ROOT_PATH . 'sources/base/ipsRegistry.php' );/*noLibHook*/
require_once( IPS_ROOT_PATH . 'sources/base/ipsController.php' );/*noLibHook*/
ipsController::run();

exit();
If not and you see any extra coding then above code remove all extra code from you index file
 
Status
Not open for further replies.
Back
Top