1
dvpicella
Solved Fatal error: Class 'XoopsLogger' not found in FILE on line X
  • 2010/3/23 11:02

  • dvpicella

  • Just popping in

  • Posts: 5

  • Since: 2005/9/1 1


I recently migrated a website to a new server.

After moving all files and db's exactly, I could not restart XOOPS because of the error.

"Fatal error: Class 'XoopsLogger' not found in FILE on line X"

Here is the problem and how I solved it.

PROBLEM

You are most likely running a module that is trying to modify memory "by reference" instead of "by value" using the "&" symbol. In php4 this was supposed to be faster but php5 works differently with memory and now this has been deprecated. As of php 5.3 it may start to give you fatal errors. I found that to be the case here.

SOLUTION

Edit "FILE" from the error message. On line X, delete the inapropriate & symbol.

For example:

change $a =& $b to $a = $b

That's it. Should work!


2
Anonymous
Re: Solved Fatal error: Class 'XoopsLogger' not found in FILE on line X
  • 2010/5/23 23:40

  • Anonymous

  • Posts: 0

  • Since:


Thanks for your solution

Login

Who's Online

214 user(s) are online (102 user(s) are browsing Support Forums)


Members: 0


Guests: 214


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits