Aldığım hata aşağıdaki gibidir
Severity: Notice
Message: Undefined property: Anasayfa::$uri
Filename: controllers/anasayfa.php
Line Number: 57
57. satırda olanlar aşağıda;
$this->index_model->yazi($config['per_page'],$this->uri->segment(3,0));
buradaki $this->uri->segment(3,0) bölümünde hata verdiğini tespit ettim. Kullandığım htaccess dosyası aşağıdaki gibidir
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]Autoload sayfasında url 'yi yüklüyorum;
$autoload['helper'] = array('url');
Localhostta sorunsuz çalışırken burda hata alıyorum. Acaba sebebi ne olabilir?