phphub5
phphub5 copied to clipboard
No CSS when loading from http://localhost:8000 or any other ports.
After running "php artisan serve" using http://localhost:8000 loads slowly and continuously "waiting for localhost at browser" how can i solve this.
@summerblue @overtrue Trying to deploy on a production server pointing to a domain name and am getting this error "ConnectionException in AbstractConnection.php line 155: Connection refused [tcp://127.0.0.1:8080]" heres my database.php >>
'redis' => [
'cluster' => false,
'default' => [
'host' => env('REDIS_HOST', 'localhost'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 8080),
'database' => 0,
],
'session' => [
'host' => env('REDIS_HOST', 'localhost'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 8080),
'database' => 1,
What can i do now, Help urgently needed.