Search code examples
symfonywampsymfony-3.2

Environment variables not found in console and composer


I set environment variables and removed parameters.yml file according to new recommended configuration.

In my local environment (WAMP), I set these in .htaccess file in the root of my project. The app is working, but Symfony console and composer can't find variables. I can't find why. Do you have an idea ?


Solution

  • I think you have to set environment variables on the terminal. PHP CLI mode will not load instruction within .htaccess

    export VARNAME="my value" 
    

    in your case with windows in cmd it will be:

    set NEWVAR=SOMETHING