Welcome Guest, Not a member yet? Register   Sign In
Integrating AMFPHP and CodeIgniter -- the EASY WAY!
#10

[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.


Messages In This Thread
Integrating AMFPHP and CodeIgniter -- the EASY WAY! - by El Forum - 06-27-2008, 04:35 AM
Integrating AMFPHP and CodeIgniter -- the EASY WAY! - by El Forum - 06-27-2008, 04:48 AM
Integrating AMFPHP and CodeIgniter -- the EASY WAY! - by El Forum - 06-27-2008, 04:50 AM
Integrating AMFPHP and CodeIgniter -- the EASY WAY! - by El Forum - 06-27-2008, 05:19 AM
Integrating AMFPHP and CodeIgniter -- the EASY WAY! - by El Forum - 06-27-2008, 01:36 PM
Integrating AMFPHP and CodeIgniter -- the EASY WAY! - by El Forum - 07-23-2008, 10:37 PM
Integrating AMFPHP and CodeIgniter -- the EASY WAY! - by El Forum - 03-17-2009, 05:13 PM
Integrating AMFPHP and CodeIgniter -- the EASY WAY! - by El Forum - 11-15-2009, 02:57 AM
Integrating AMFPHP and CodeIgniter -- the EASY WAY! - by El Forum - 01-29-2011, 06:33 PM
Integrating AMFPHP and CodeIgniter -- the EASY WAY! - by El Forum - 03-25-2011, 03:44 AM
Integrating AMFPHP and CodeIgniter -- the EASY WAY! - by El Forum - 05-14-2011, 01:54 PM



Theme © iAndrew 2016 - Forum software by © MyBB