This is my second time I have tried watching this video, my first was I had only watched the first 20 minutes, and I could not follow along because I am a zero knowledge to CI4 back then. I have to watched first a tutorial for zero knowledge like me, and after 3 months I have tried again this video and I am appreciate what I have learned from this video. Thank you very much
This code " $check_password = Hash::check($password, $user_info['password']); " at 39:10 in the Auth controller doesn't check password and therefore i can't login into this system since the password not being checked it's always reported as incorrect. (All other files and lines of code done exactly as taught in the video) Does anyone know how to deal with this?
First time am creating the admin panel. Successfully completed. You gave me more confident. The best free tutorial ever, never seen like this before. each and every line was clear. Thank you, so much.
If you have 404 problems with the routes and views, you need to change the values of Auto Routing on your CI4 project and the controller syntax, or use the Defined Route Routing method. Check the CI4 web info:).
@@sawastacks I get this error once I saved it: 404 - File Not Found Can't find a route for 'get: auth| BTW, I have corrected the snippet and this same error appears.
thank you so much for this video... u helped me a lot to learn codeigniter4... please keep continue uploading more useful videos like this in codeigniter4
hi, in Codeigniter 4, can i have an example of 2 tables master-detail like i can create in Oracle Apex or Oracle Forms 6i/10g where master is in Form style single record (in above region) and detail in Grd style multi-row (say tabular using datatable etc.), i failed to find yet, please help us. regards
Hi, I'm having trouble accessing the Auth.php file. When I try to go to localhost:8080/auth, it shows the 404 error page not found. I followed every step so far. Can you help?
could u plz share the codes, i had typed all by seeing this and stucked some where in the validation.. debuging dont know to identify where is the issue
Hello I have a problem, I did the same steps as you but the problem is when I log in, I write the data as it is, but it redirects me to the registration page saying that the data is not correct.
Hello sir, unfortunately I have a problem with my code in the Hash.php section, the login process always displays the value false even though the value in the database and what I entered is correct
Good tutorial. But I am facing the problem undefined function display_error(). I still resolve it. I also already recheck many time for my code I can't find the mistake. Please help me!.
you are good coder i am learning laravel just for you today i can learn codeigniter but i have Question in my mind please tell me in this video you are implement the login Auth so i can follow this video but i can not understand how to avoid sql injection
When i stry to signup , i get this error CodeIgniter\Database\Exceptions\DataException Allowed fields must be specified for model: App\Models\UsersModel
I follow ur tutorial but i change part validation when input name... I add alpha_space so when somebody try try input except alphabet and space it'll be fail
Check if your form.php has the same letter cases as those of the word form in your constructor function in the auth controller. I have ever faced that because one of my form_helper.php files was capital F and yet i wrote it with small f in the auth.php controller
Hey its because of the limit we set to password column in users table, it should be 255(varchar(255)). as we are hashing the password and it is of 256 bit
The check method does not work for user passwords created without going through the make method in the Hash.php file. Check if the password has been encrypted
The term 'php' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. please help me
Please, i have this error "Call to undefined function display_error()", I don't understand where the function is declared, thanks for your help. The error points to this line :
@@sawastacks i do everything that is explain and nothing changed, the problèm is that i have an undefined function display_error() (Error located within view/auth/register.php). Sorry, my english is so bad
I've got this error.(404 - File Not Found Can't find a route for 'get: auth| ) but I fix it already. I go to route.php file and uncomment this and changes to true -->routes->setAutoRoute(true); and it works.. thank you
Kudos to you for your effort ,am new to codeigniter,I tried to follow the syeps in the video,but at the point to insert I encounter this error "Call to a member function insert() on null" in the auth controller kindly assist to resolve
This is my second time I have tried watching this video, my first was I had only watched the first 20 minutes, and I could not follow along because I am a zero knowledge to CI4 back then. I have to watched first a tutorial for zero knowledge like me, and after 3 months I have tried again this video and I am appreciate what I have learned from this video. Thank you very much
Hope you enjoyed it!
The best tutorial on codeigniter 4 login/register so far, thanks sir!
Glad it helped!
This code " $check_password = Hash::check($password, $user_info['password']); " at 39:10 in the Auth controller doesn't check password and therefore i can't login into this system since the password not being checked it's always reported as incorrect. (All other files and lines of code done exactly as taught in the video) Does anyone know how to deal with this?
same here, cannot login!!
same here
Great tutorial, thank you! You write clean code, that is very organized and easy to understand! It's great for learning!
OMG! Thank you so much
First time am creating the admin panel.
Successfully completed. You gave me more confident.
The best free tutorial ever, never seen like this before. each and every line was clear.
Thank you, so much.
Thank you too.
If you have 404 problems with the routes and views, you need to change the values of Auto Routing on your CI4 project and the controller syntax, or use the Defined Route Routing method. Check the CI4 web info:).
What values should be changed? I have a similar problem
😢
Bootstrap is not connecting
Log-in
check your snippets:
@@sawastacks I get this error once I saved it: 404 - File Not Found
Can't find a route for 'get: auth|
BTW, I have corrected the snippet and this same error appears.
@@daniellejtman1860 Try to add $routes->setAutoRoute(true); in the app/config/routes.php file.
Worked for me
Hola saludos desde Cuba, me siento muy bien y gracias a tí cada día hago nuevas experiencias en CodeIgniter. Bendiciones y mucha salud
muchas gracias
The best tutorial on codeigniter 4 login/register so far, thanks!
Thank you so much
@@sawastacks sir, how to make login muti user? (admin and user)
I needed an example of filters, thank u !
Hi Yagerxs. You will see how to use the controller filters in this video.
@@sawastacks i really apreciate it!
Great tutorial. It helped me a lot while i was facing difficulties when setting up CI 4 project for the first time.
Glad it helped!
Really superb i have followed this and able to create the login check authentication. Thanks bro
Thanks
thank you so much for this video... u helped me a lot to learn codeigniter4... please keep continue uploading more useful videos like this in codeigniter4
Thank you, I will
Hey can u please give me code of this file ?
on 45:26 what "access=out" for?
hi, in Codeigniter 4, can i have an example of 2 tables master-detail like i can create in Oracle Apex or Oracle Forms 6i/10g where master is in Form style single record (in above region) and detail in Grd style multi-row (say tabular using datatable etc.), i failed to find yet, please help us. regards
thankyou for making this tutorial, this is very helping me to understand Code Igniter 4
Glad it helped!
Hi, I'm having trouble accessing the Auth.php file.
When I try to go to localhost:8080/auth, it shows the 404 error page not found. I followed every step so far. Can you help?
could u plz share the codes, i had typed all by seeing this and stucked some where in the validation.. debuging dont know to identify where is the issue
Hello I have a problem, I did the same steps as you but the problem is when I log in, I write the data as it is, but it redirects me to the registration page saying that the data is not correct.
i think we have the same problem here. i cant login..how did you fix it?
Hello sir, unfortunately I have a problem with my code in the Hash.php section, the login process always displays the value false even though the value in the database and what I entered is correct
The password inside database, is it hashed?
can u guide how create role based permission in ci4
flow of the tutorial and step by step procedure is very understandable useful video thank you so much
Thank you so much
i got stuck at validation, can you give me the src code please? thankyou
Good tutorial. But I am facing the problem undefined function display_error(). I still resolve it. I also already recheck many time for my code I can't find the mistake. Please help me!.
you are good coder i am learning laravel just for you today i can learn codeigniter but i have Question in my mind please tell me in this video you are implement the login Auth so i can follow this video but i can not understand how to avoid sql injection
The best tutorial ever!! Thank you so much!
Thank you
Hey can u please give me code of this file ?
The link to the source code isn't working.
Try this: ko-fi.com/s/56da556f2c
3:51
when i go to localhost:8080/auth
i got "404 - File Not Found Can't find a route for 'get: auth'."
where should i fix?
a question do the filters replace the cookies, or how do they integrate them?
Hey can u please give me code of this file ?
thanks a lot man, i can't wait for the next tutorials
Thanks
When i stry to signup , i get this error
CodeIgniter\Database\Exceptions\DataException
Allowed fields must be specified for model: App\Models\UsersModel
I follow ur tutorial but i change part validation when input name...
I add alpha_space so when somebody try try input except alphabet and space it'll be fail
Dear Sir, localhost shows validation errors, but server shows validations error () Call to undefined function display_error().
Check if your form.php has the same letter cases as those of the word form in your constructor function in the auth controller. I have ever faced that because one of my form_helper.php files was capital F and yet i wrote it with small f in the auth.php controller
what version of bootstrap?
Bootstrap version 3
I’m having issues with the users model
This video has helped me a lot , thanks you .. but please try to cover all points in the next video..
I will try my best
Hello Irebe
user register successfully but user login is incorrect password. all code was same but user check password else condition not working
have you find a solution to this problem, i have the same problem
same problem bro, have you find any solution
Hey its because of the limit we set to password column in users table, it should be 255(varchar(255)). as we are hashing the password and it is of 256 bit
The check method does not work for user passwords created without going through the make method in the Hash.php file.
Check if the password has been encrypted
@@prajwalbhale6393 you saved me bro..searching for this solution for a while..thanks to you
Must have register with Google and Facebook options.
I will make video for that👍
Excuse me, how can I get the bootstrap folder?
github.com/twbs/bootstrap/releases/download/v4.0.0/bootstrap-4.0.0-dist.zip
how to fix getMethod???in controller?
it's really useful for me thanks to making this type of video
Thank you so much Megha
This video is amazing! Very useful, thank you for sharing!
Glad you enjoyed it!
Can you make a video for cookie management/ lifecycle in CI4 please.
Hello, I need this script. Could you share it?
Awesome tutorial. Very useful! Thank you!
Thank you
Great tutorial! VERY informative!! Thanks for your efforts!
Glad you enjoyed it!
how to use ajax,jquery and json in codeigniter 4 please any suggestions
Nice idea. Soon I will make a videos about that
Class 'App\Libaries\Hash' not found how to fix it?
'App\Libraries\Hash'
@@sawastacks i've filled in auth controller
@@sawastacks please give me syntax or something to fix it
@@erwinfr870 Don't forget 'r' => Libraries is not Libaries
The term 'php' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or
if a path was included, verify that the path is correct and try again.
please help me
what is this "cmdlet"?
If you want to run codeigniter 4, you have to open cmd in project root directory then run 'php spark serve'
@@sawastacks thanks a lot . Appreciated
Saludos desde Cuba. No te canses nunca.
On $userInfo = $userModel->find($loggedUserID) I got Error
Call to a member function getFirstRow() on bool
any ideas? what could be causing this?
Please, i have this error "Call to undefined function display_error()", I don't understand where the function is declared, thanks for your help.
The error points to this line :
Just watch this video from here: ruclips.net/video/vKFcpQo-h-Q/видео.html
@@sawastacks Thank's ;)
@@sawastacks i do everything that is explain and nothing changed, the problèm is that i have an undefined function display_error() (Error located within view/auth/register.php). Sorry, my english is so bad
@@sawastacks It's works ! ;)
@@JoeSmith-wu3yz what did you do to make it work? am still stuck
Best tutorial on RUclips :)
Glad it helped!
Hello, how to remove the public from the url?
Hi, explained nice. I have a question. Is mandatory to create routes for every controller's method.
Hey can u please give me code of this file ?
I've got this error.(404 - File Not Found
Can't find a route for 'get: auth|
) but I fix it already. I go to route.php file and uncomment this and changes to true -->routes->setAutoRoute(true); and it works.. thank you
Woww👍. Thank you so much🙏
Woww👍. Thank you so much🙏
What if email is available in the database.
plese, can u edit this video bifurcate by chapter??
good video
Kudos to you for your effort ,am new to codeigniter,I tried to follow the syeps in the video,but at the point to insert I encounter this error "Call to a member function insert() on null" in the auth controller kindly assist to resolve
I really like this tutorial. Thanks!
Glad it was helpful!
Hi bro, how to do messages with SweetAlert ????
Ajax, or Just verify session and put script tag in your verification. I'm BR but i can help u. Do you have whatsapp?
How come he doesn't use routes.php?
I LIKE YOUR TUTORIAL,DO YOU HAVE MULTI LEVEL LOGIN SYSTEM USE CODEIGNITER 4 TUTORIAL?
Not yet
thanks man you help me alot! cheers!
Thank you
can you make a tutorial to make admin and user in apps
It's so easy to follow. Thank you
Thank you
Very Useful, I subscribe from Indonesia
Thank you
Hey can u please give me code of this file ?
routes?
Thank you a lot. Very Well explained and very helpful
Glad it was helpful!
not able to hear audio
Great video. all thing explained well
Thank you🙏
Great tutorial, thank you!
Hello i need help
Excelente....gracias saludos de los andes peruanos
Thank you
you didn't mention routes sir
please mention
Hey can u please give me code of this file ?
what a great tutorial, thanks a lot sir!
Thank you
Must have forget password so that if someone forget can get their account back.
Excellent tutorial
Thank you
nice, I like this tutorial
Glad you like it!
make more video on CI4
Yeah. next year i will focus on CodeIgniter more than Laravel.
@@sawastacks thank you and i am very much excited for your upcoming videos.
But You have to let source code
Very good content. Thanks for share!!!
Thanks for watching!
There is no env file... O.o
Best tutorial
Please create feature reset password for codeigniter 4
Yeah, I will make that video soon
@@sawastacks thank you for your attention
please add more video
thank you sooooooooooooooooooooooooo muuuuuuuuuuuuuuuuuuuuuuuuuuch
thanks
Nice. could you share your code?
THANK YOU!!!
Thank you too
Hey can u please give me code of this file ?
Very informative
ThnX ... It's helpful
Thank you
Wow awesome tutorial, can you share code
terima kasih
Thank you
Good tutorial
Thank you! Cheers!
thanks
thx ขอบคุณครับ
great
hi. i have a problem with mylogin. i cant find the problem. i followed all the code.i can register though
Great tutorial. loved it !
Thanks for watching my video