Home / Scripts & Code / PHP Scripts / Login
LaraMinLTE - Laravel Starter KitLaraMinLTE - Laravel Starter Kit
Starter Kit Admin Panel for quick start your Laravel projects Average rating of 5.0 based on 3 votesHome / Scripts & Code / PHP Scripts / Login
LaraMinLTE - Laravel Starter Kit
Starter Kit Admin Panel for quick start your Laravel projects Average rating of 5.01 Support questions or comments
Please login or create an account to post a question or comment.
-
Apr 10, 2023mironisho PurchasedMessage to seller:
Hi,
I bought and installed your LaraMinLTE, but it doesn't work. The homepage has got a HUGE black logo that doesn't change in size, below which teeny tiny repeated menu to login or register, both when clicked go to no where, saying "Not Found The requested URL was not found on this server.".
Please inform what is going wrong and how to fix.
Best regards
Miron - View 3 more replies
-
Apr 11, 2023smartyscripts AuthorI sent a video of the entire installation process to your email, watch it and you'll see that everything works exactly as expected.
-
Apr 12, 2023mironisho Purchasedcopy of the email I've just sent:
Hi,
Thanks for the video, this is almost exactly how I did it. The only difference is to define explicit domain and configure apache. The results are:
1- homepage displayed successfully
2- login and register pages still can't be found (dead link)
I tried all kinds of combinations in apache virtual sites --> totally useless.
I have this weird feeling that the reason why it worked on your side is because you are browsing the website on the same physical machine running the web server, am I right?
Well, if this is the case, this could be a reason since I am developing on a ubuntu home server and am using my windows desktop to navigate to the site. My server is headless (no desktop) and even if it had desktop, I wouldn't try. I need something that works in a way to be accessible from anywhere.
Please advise, provide a solution or refund.
Best regards
-
Apr 12, 2023smartyscripts AuthorI've never done development in a separate environment like you are doing, so I'm not the best person to help you with that. In my case, I use Linux Mint and Laradock as a development environment, all on the same machine, not separated as is your case.. But I believe the problem is related to the server where you hosted the files, you said the url's don't work, so I recommend checking the following:
1. Make sure "mod_rewrite" is enabled
2. Configure a local access url in apache like the example below:
<VirtualHost *:80>
ServerName laraminlte.local
DocumentRoot "/var/www/laraminlte/public"
<Directory "/var/www/laraminlte/public">
Options +Indexes +Includes +FollowSymLinks +MultiViews
<IfVersion < 2.4>
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
</VirtualHost>
3. Configure the /etc/hosts file and include the line below
127.0.0.1 laraminlte.local
If none of that works, I recommend testing the script in a local environment using Docker/Laradock, or installing the script on a hosting (I use Cloudways and also droplets in other clouds with CyberPanel).
If you still want it to work in your current environment, I recommend posting about your problem on StackOverFlow/Laracasts to get help from someone who also has the same type of environment as yours and can help you figure out why the URL's don't work.
I tried researching how to access Laravel's routes directly, without the .htaccess, but I didn't find any information. If you find out if this is possible, I recommend trying accessing routes this way to see if it works. I say this because I also developed in Codeigniter 3, and in it it was possible to access the routes using /index.php/Controller/Method and it helped to discover that there was something wrong with the .htaccess or with the mod_rewrite, if this is also possible in Laravel it can help in diagnosing the problem.
Information
Category | Scripts & Code / PHP Scripts / Login |
First release | 25 April 2021 |
Last update | 21 August 2024 |
Files included | .php, .css, .html, Javascript .js |
Tags | admin panel, user management, backend, php admin panel, adminlte, administration panel, backend panel, login authentication, user roles and permissions, laravel admin panel, laravel adminlte |