Codeigniter, php5, Fatal error: Class 'Controller' bulunamadı

0 Cevap php

Ölümcül hata: Sınıf 'Controller' <local_path>\system\application\controllers\welcome.php on line 3 bulunamadı

<?php

class Welcome extends Controller {

    function __construct()
    {
        parent::Controller();   
    }

    function index()
    {
        $this->load->view('welcome_message');
    }
}

/* End of file welcome.php */
/* Location: ./system/application/controllers/welcome.php */

Ben sadece CodeIgniter zip dosyası ayıklanır ve Aptana stüdyoda denetleyicisi welcome.php çalıştırmak için çalıştı php çerçeveler acemi duyuyorum. (PHP 5)

0 Cevap