Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The local project works correctly, but it does not find the url's server [closed]

Tags:

laravel

I created a project, it works perfectly in the local. It worked sometimes on the server.

but most of the time on certain pages does not find, for example:

on the login button that I clicked.

Is there a problem with the code or the host that I have provided?

like image 854
saeid yaghoobi Avatar asked Dec 04 '25 13:12

saeid yaghoobi


1 Answers

You need to update composer on server thats why sometime button links not working

Composer update
php artisan key:generate
php artisan cache:clear

Delete all the cache file i.e.

 storage/framework/views
like image 196
Gurpal singh Avatar answered Dec 07 '25 14:12

Gurpal singh