English 中文(简体)
Fatal error: Cannot redeclare happening on same line
原标题:

I have been fighting with this error for a while. The error is somewhere in the function I now have php telling me it can t redeclare a variable on the same line... strange. Any help would be great.

Fatal error: Cannot redeclare bp_block_admin_init() (previously declared in /home/bp-member-login-redirect/bp-member-login-redirect-loader.php:31) in /home/bp-member-login-redirect/bp-member-login-redirect-loader.php on line 31

lines 29-31

// make sure buddypress is installed
function bp_block_admin_init() {
    require_once( dirname( __FILE__ ) .  /bp-member-login-redirect-core.php  );
}

the lines actually calling the function (i get the error with or without these lines in the code:

if ( defined(  BP_VERSION  ) ) {
    bp_block_admin_init();
} else {
    add_action(  bp_init ,  bp_block_admin_init  );
}
最佳回答

The problem was with the WordPress function register_activation_hook() which is called when a plugin is loaded. In my case, the file was being included without WordPress loading. Once I removed the functions I no longer got an error.

问题回答

Make sure you use require_once to ensure you re not double loading the bp-member-login-redirect-loader.php file.

require_once  /home/bp-member-login-redirect/bp-member-login-redirect-loader.php ;

It looks like bp_block_admin_init is being defined twice. In what file does this code appear? Is another file require-ing or include-ing this file multiple times?

Most likely you re including bp-member-login-redirect-loader.php more than once. For example, the following is sufficient to reproduce your problem:

test.php

<?php
function foo() {}
?>

test2.php

<?php
include( test.php );
include( test.php ); // Double definition of foo() on test.php:2
?>

Please check it whether the function bp_block_admin_init() is already exists or not.

if(!function_exists( bp_block_admin_init ){
  function bp_block_admin_init(){
    //....
  }
}




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签