How to disable Redis in Laravel for dev version - laravel

I have a Laravel API that I need to test locally. How can I disable Redis cache on a local Laravel server? I can't disable it manually deleting all Redis::connection cases.

You can change "Default Cache Store" in config/cache.php file in your project.
By default you should have this 'default' => env('CACHE_DRIVER', 'file'),
You have a few solutions depending on what you have there:
if you already have changed default cache driver on that file, just change it to 'file' (not recommended!)
better would be change to default value 'default' => env('CACHE_DRIVER', 'file'), but add appropriate value in .env file CACHE_DRIVER=file

Related

how to change database configs in laravel?

My larave app have setup steps.
In the database configuration step, user inputs should be placed as database configuration, but i dont know how can i set custom configs for database.
I used this code, but it changes the configs temporarily and doesn't save them.
Config::set("database.connections.mysql", [
"host" => "...host...",
"database" => "...database...",
"username" => "...username...",
"password" => "...password..."
]);
Just try to change .env file or on config/database.php do your corrections

Where are laravel cache stored while using array driver?

I have implemented query cached in my application and my cache driver is array.But i dont know where the cached data is stored.
In config/cache.php
'default' => env('CACHE_DRIVER', 'file'),
In my .env
CACHE_DRIVER=array

hide laravel application from wappalyzer extension

I am trying to hide laravel application from wappalyzer extension, already i changed my session name and clear cache but still wappalyzer can detect laravel application.
In the config/session.php, try changing:
'cookie' => 'laravel_session',
To something like:
'cookie' => 'app_name_session',
Laravel 8 - .env file just change your APP_NAME=Value
APP_NAME=Your Application Name
Ex:
APP_NAME=bismillah
Wappalyzer Extension - Setting - Clear cached detections
.env
Wappalyzer- Clear cached detections
Wappalyzer

Laravel - settings depending on environment

I just started using Laravel and now I'm configuring my application. I want different settings for my local and production environment and read the Laravel 5.2 docs on the best way to do that. But I can't figure out how to do this for all the config files. For example I want the session.secure setting to be false on local and true on production. What is the best way to do that?
In the index.php file I do a check if (App::environment('local')) and if that is false I update the session.secure to true -> config(['session.secure' => true]).
I update the /config/session.php file and set 'secure' => false to 'secure' => env('SESSION_SECURE', false). And then I make two .env-files (one for local and one for production) with the variable SESSION_SECURE and the corresponding values.
Is there another/better way?
Thank you!
The common way is to set the settings in your .env file. So you change the value of 'secure' to your .env key e.g
'secure' => env('SECURE', false),
In your .env file on your production server, just set the .env value SECURE to true.
SECURE=true
So with this in your local Environment, the 'secure' setting is set to false as default. And if you are on your production Server, just set the .env Key to true and the 'secure' configuration changes also from false to true.
You may also have a look at this .env Article for Laravel

How to change Laravel 5 sessions to redis

I now set a lot of values to the session using Session::put and Session::get. If I want to use Redis throughout the application, is it true that I just need to replace all Session:: with Redis:: to make it work?
By the way, I already installed the Redis package
All you have to do is just changing your .env file :
SESSION_DRIVER=redis
and use Session::get() etc.
You should change in connfig/session.php 'driver' => env('SESSION_DRIVER', 'file'), file to redis.

Resources