Ben CodeIgniter tabanlı bir web sitesi için bir model yükleme değilim, ama bu bir hata vererek tutar:
"Fatal error: Call to a member function on a non-object in /nfs/c02/h05/mnt/30796/domains/planetchustar.com/html/arguit/system/application/controllers/home.php on line 8"
İşte kod, referans bir parçası:
function index()
{
$this->load->model('posts'); //error here
$result = $this->Posts->get_all_topics();
}
Model "Mesajlar" olarak adlandırılan ve dosya adı "posts.php" olduğunu.
EDIT: I found out one of my problems, which was that I wasn't loading to database before I tried to use its functions, so I fixed that, but now its saying:
A Database Error Occurred
Unable to connect to your database server using the provided settings.
Ama ben database.php dosyaya kaydedilir bağlantı bilgileri (phpmyadin web sitesinden aldım) doğru olduğuna eminim.