Recent Topics

1 Dec 24, 2007 21:42    

My b2evolution Version: Not Entered

I just installed b2evolution on my website and am getting a list of error messages that I'm not sure what they are. The error messages below:

Notice: Only variable references should be returned by reference in /home/www/consciuossedation.com/blogs/inc/MODEL/dataobjects/_dataobjectcache.class.php on line 121

Notice: Only variable references should be returned by reference in /home/www/consciuossedation.com/blogs/inc/MODEL/dataobjects/_dataobjectcache.class.php on line 121

Notice: Only variable references should be returned by reference in /home/www/consciuossedation.com/blogs/inc/MODEL/dataobjects/_dataobjectcache.class.php on line 121

Notice: Only variable references should be returned by reference in /home/www/consciuossedation.com/blogs/inc/MODEL/dataobjects/_dataobjectcache.class.php on line 121

Notice: Only variable references should be returned by reference in /home/www/consciuossedation.com/blogs/inc/MODEL/dataobjects/_dataobjectcache.class.php on line 121

Notice: Only variable references should be returned by reference in /home/www/consciuossedation.com/blogs/inc/MODEL/dataobjects/_dataobjectcache.class.php on line 121

Warning: Cannot modify header information - headers already sent by (output started at /home/www/consciuossedation.com/blogs/inc/MODEL/dataobjects/_dataobjectcache.class.php:121) in /home/www/consciuossedation.com/blogs/inc/MODEL/skins/_skin.funcs.php on line 71

I have not done any modifying of anything. I simply installed it from my web host and then browsed to it. Yes, I created a MySQL database prior to installing. Any help would be appreciated. THanks

Scott

3 Jun 13, 2008 19:01

Afwas saves the day again! Yay! Thank you! :)

4 Jun 13, 2008 20:00

Still getting an error ("Only variable references...) on /inc/items/model/_itemlist.class.php on line 297, which is the last here (return $Item;)

function & get_item()
{
if( $this->group_by_cat == 1 )
{ // This is the first call to get_item() after get_category_group()
$this->group_by_cat = 2;
// Return the object we already got in get_category_group():
return $this->current_Obj;
}

$Item = & parent::get_next();

if( !empty($Item) && $this->group_by_cat == 2 && $Item->main_cat_ID != $this->main_cat_ID )
{ // We have just hit a new category!
$this->group_by_cat == 0; // For info only.
$r = false;
$temp = & $r;
return $temp;
}
return $Item;
}

Any suggestions? Thanks again!

5 Jun 13, 2008 20:01

By the way, is there skin that would not cause errors? I'll just use that one! ;)

6 Jun 14, 2008 00:11

try

$foo = & $Utem;
return $foo;

Yo get rid of these errors upgrade to PHP 5. The option with disabling error notices is perfectly safe also.

Good luck


Form is loading...