Привет всем, я работаю над проектом, но когда я загружаю свой проект, у меня появляется ошибка, которую вы можете увидеть здесь
http://rapcom.dk/profil/index/KoS
но я думаю, что я делаю это, потому что это работает на моем локальном ПК: S, вот мой контроллер
function index()
{
$this->load->model('profil_model');
$data['query'] = $this->profil_model->vis_profil($this->uri->segment(3));
//Henter lib profilwall så man kan vise wall beskeder i profilen
$this->load->library('profilewall');
$data['queryWall'] = $this->profilewall->wallShow();
$this->template->write_view('content', 'profil_view', $data);
$this->template->render();
}
И моя библиотека называется profileWall.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Profilewall
{
private $CI;
public function __construct()
{
$this->CI =& get_instance();
}
public function wallShow()
{
$this->CI->load->model('profil_model');
return $this->CI->profil_model->wallGet($this->CI->uri->segment(3));
}
}
Вы знаете, что может быть не так? и я на 100% уверен, что он загружен на сервер