How to install and use SmallFry framework.
- I downloaded it from https://github.com/maniator/SmallFry
- Extracted it under htdocs and placed all content in folder: smallfry (C:\xampp\htdocs\smallfry).
- Set Doc root to define(‘DOCROOT’, ‘C:/xampp/htdocs’); in Autoloader.php.
- Changed db info to following settings—
$CONFIG->set('DB_INFO', array( 'host' => 'localhost', 'login' => 'root', 'password' => '', 'database' => 'smallfry', ));
Still getting the following error —

let me know what else need to be change as i m very new to this framework.
Apparently, the framework is a bit out-dated, as assigning the return vlaue of new by reference is indeed deprecated. You should look for
$x =& new Obj;calls and remove the&.The Fatal error should be fixed after fixing the other issues. According to the documentation, that method should exist.