Welcome Guest, Not a member yet? Register   Sign In
localhost send an invalid response
#7

(This post was last modified: 11-28-2020, 03:35 AM by InsiteFX.)

Take off all the beginning / slashes and it should work.

PHP Code:
$routes->get('/''pages::index');

$routes->get('komik/''Komik::index');
$routes->get('komik/create''Komik::create');
$routes->get('komik/(:segment)''Komik::detail/$1'); 

Also your controller name should be capitalized,'Komik::index' .

PHP Code:
// class name must have the first letter capitalized
class Komik extends BaseController 
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
localhost send an invalid response - by upnormal - 11-26-2020, 07:07 PM
RE: localhost send an invalid response - by InsiteFX - 11-28-2020, 03:31 AM



Theme © iAndrew 2016 - Forum software by © MyBB