Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>To add to <a href="http://forum.kohanaframework.org/discussion/comment/73494#Comment_73494" rel="nofollow">digby's note</a>: <a href="http://kohanaframework.org/3.2/guide/kohana/conventions#class-names-and-file-location" rel="nofollow">All class file names and directory names are lowercase.</a></p> <p>There are a few little things I noticed but nothing that could explain the problem you are having:</p> <ul> <li><a href="https://github.com/kohana/core/blob/3.2/master/classes/kohana/request.php#L764" rel="nofollow">Query strings should not be and are not used to route to an action</a>. Use $this->request->query() in controllers to use GET values.</li> <li>Slashes get <a href="https://github.com/kohana/core/blob/3.2/master/classes/kohana/request.php#L783" rel="nofollow">trimed off</a> the beginning and end of URI's, so the optional / in the commented out 'def' route is useless.</li> <li>The second time defining the kendogrid route overwrites the old one. Not that it really matters since they are the same, so why not remove one?</li> </ul> <p>What controller do you expect to be routed too? Currently it should be Controller_... Hmm... I spy with my little eye a typo! 'susbcribers' instead of 'subscribers'. So currently you will be routed to Controller_Susbcribers::index().</p> <p>If you want the Controller_Useraccess::index() instead of Controller_Subscribers::index() (assuming you fix the typo) remove the first kendogrid route since both 'kendogrid' and 'default' match an empty URI.</p> <p>PS. I am assuming you use 3.2</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload