[eluser]Sixer[/eluser]
MilkyRay: In CI 2.0, the workings of Controllers have slightly changed. Therefore you need to change, in application/controllers/amf_gateway.php:
Code:
<?php
class Amf_gateway extends Controller
{
public function __construct()
{
parent::Controller();
To:
Code:
<?php
class Amf_gateway extends CI_Controller
{
public function __construct()
{
parent::__construct();
Also, remember that application/ no longer resides in system/ with CodeIgniter 2.0.