Welcome Guest, Not a member yet? Register   Sign In
404 not found!
#6

localhost/login could trigger a Login controller's index(), or it could be a login() method inside Configure, or it could even be the default app inside a "login" folder (thought that sounds awkward if "Configure" is your default).

If the intent of the login function is to return JSON, then I would set it up as a separate controller, though that is not a requirement.

If a method inside Configure, its signature would be login($email).
If a stand-alone controller, its signature would be Login::index() and you would need to pick off the email parameter explicitly.
If a stand-along controller, but you use a POST, then the signature would be Login::index() and you would use $this->input->post('email') to retrieve the parameter.

In all these cases, the logic would be something like:
Code:
 ... validate/retrieve user info
 header("Content-type: application/json");
 echo json_encode($user_info_to_return);

If "subit_backend" is referring to a controller, then "localhost/subit_backend" would normally resolve to "application/controllers/Subit_backend.php"

Hope this helps.
Reply


Messages In This Thread
404 not found! - by richb201 - 03-14-2018, 11:22 AM
RE: 404 not found! - by jreklund - 03-14-2018, 11:30 AM
RE: 404 not found! - by richb201 - 03-14-2018, 02:04 PM
RE: 404 not found! - by ciadmin - 03-14-2018, 03:20 PM
RE: 404 not found! - by richb201 - 03-14-2018, 03:56 PM
RE: 404 not found! - by ciadmin - 03-14-2018, 04:28 PM
RE: 404 not found! - by richb201 - 03-15-2018, 12:43 AM
RE: 404 not found! - by ciadmin - 03-15-2018, 01:54 AM
RE: 404 not found! - by richb201 - 03-16-2018, 07:19 AM
RE: 404 not found! - by ciadmin - 03-16-2018, 08:06 AM
RE: 404 not found! - by richb201 - 03-16-2018, 06:31 PM
RE: 404 not found! - by ciadmin - 03-16-2018, 09:19 PM
RE: 404 not found! - by richb201 - 03-17-2018, 02:45 AM
RE: 404 not found! - by jreklund - 03-17-2018, 05:16 AM
RE: 404 not found! - by richb201 - 03-17-2018, 07:07 AM
RE: 404 not found! - by jreklund - 03-17-2018, 08:27 AM
RE: 404 not found! - by richb201 - 03-18-2018, 06:59 AM
RE: 404 not found! - by InsiteFX - 03-18-2018, 02:20 PM



Theme © iAndrew 2016 - Forum software by © MyBB