Hotel-Management-System
Hotel-Management-System copied to clipboard
Help of Your Project
hi sir login and other things are not opening , i am running first time but didn't load the page please can you help me my email id is [email protected]
Hey did you rename the htaccess file to .htaccess ?
No sir
but didn't load any page i will send the screen shot
this page only opening others not opening
Sir Now template run but how to run other pages Please here i am waiting for Your Reply sir
please give admin panel login id and pswd and also front end
@cassystech for login on admin dashboard use : admin:guards
admin:guards password not opening
what is user name and what is password please let me know
thank you
@cassystech Your password worked please tell me i am waiting please tell me user name and password
@SabanMishriya go to login type username admin and pswd guards
Not opening it will show above error msg what can i do please help me @cassystech
@cassystech The requested URL /Hotel-Management-System-master/admin/login/validate_credentials was not found on this server. this is my error please reply sir
http://127.0.0.1/Hotel-Management-System-master/index.php/user this Url type then open LOG in page na is it correct
plz provide frontent details more
@SabanMishriya http://localhost/Hotel-Management-System-master/admin
@cassystech not opening sir same error
The requested URL /Hotel-Management-System-master/admin/login/validate_credentials was not found on this server.
please tell me the validate_credentials code or what because i didn't c in my folder so
hello, i think i can help with that. make sure your main htaccess file begins with a ".", for example, the project comes with an htaccess file without a DOT. so change is to this ".htaccess". hope it helps.
For all who have issues loging in with admin. Note as below:
- goto http://localhost/hotelms/admin or whatever your setup is and add the /admin
- The admin password is not "guards" as told above. Its "admin123" which is the decrypted md5 of the given as 0192023a7bbd73250516f069df18b500 in the mysql entry.
- The admin password is set using
md5("yourpassword")
, so do this in a php file to create/echo your new password:
<?php
echo md5("guards");
// Will give you: ae72b1c489f5ee5afe76bc4ece3ab74c
// Not as given: 0192023a7bbd73250516f069df18b500
?>
4) So, guards will give you ae72b1c489f5ee5afe76bc4ece3ab74c
Hope that helps others.
I didn't solve still now and i didn't understand please explain @samimi-it and where should i change and md5 is nerw one or old please explain
@SabanMishriya:
All the passwords of this project are using MD5 encryption.
- Make a new php file in your localhost root folder and name it makepassword.php
- Copy and Paste the code given below inside that file.
<?php
echo md5("what-ever-password-you-want-to-encrypt-with-md5");
// Note: Change the "what-ever-password-you-want-to-encrypt-with-md5" with your required password
?>
- then run it inside your browser like below:
http://localhost/makepassword.php
- You can see the output of the
echo
as it makes and shows you the MD5 of the password that you want.
Also regarding the login page for the admin of this project, use the given below.
Username: admin Password: admin123
Question: How new are you to php?
If the answer is less than a year, then please avoid this project as it requires advance knowledge of PHP, OOP and MVC.
Start learning PHP first, OOP along, then understand the MVC mindset, then Codeigniter.
Lastly, don't quit.
not too much knowledge but ok, and done md5 in root folder and run the program and after i come in login page , as same error occur again @samimi-it
No worries. I will guide you to a fix. What is your folder name for this project?
Can you please rename it to "hotelms" so our links and following discussions will be uniform as below:
-
The root as called the frontend page will be at:
http://localhost/hotelms/
-
The admin as called the backend page will be at:
http://localhost/hotelms/admin
- After the folder rename and visiting the above links, what do you get in the browser?
- If admin page showed, can you login with the username as
admin
and password asadmin123
?
You must be able to view the links as the attached two pics.
Back end opened and admin panel not opened
My admin page opening link is localhost/hotelms/index.php/user it's different and why @samimi-it
please check my url
Can you send full code with instructions at my email please :[email protected] @samimi-it
@SabanMishriya:
Can you send full code with instructions at my email please :[email protected] @samimi-it
Sorry to say No! Discussion is to be public for all.
Akosss commented on Mar 1
hello, i think i can help with that. make sure your main htaccess file begins with a ".", for example, the project comes with an htaccess file without a DOT. so change is to this ".htaccess". hope it helps.
@SabanMishriya: Do as given above by Akosss commented on Mar 1
yes final done thank thank you very much if any doubt i will ask you please help me @samimi-it
@SabanMishriya: Glad it fixed. You are most welcome and sure will help as long as it remains here as a public thread.