2.8.4.1.3. Setting up a database connection in Symfony

Attention!

The connection will not work with localhost. The host address must be taken from the data to connect to the database.

Data to connect to database in Laravel are specified in the database settings configuration file:

  • In case of using a file .env you need to change the line:
    DATABASE_URL="mysql://login:password@host:3306/base_data"
  • In case of using a file app/config/parameters.yml you need to change the lines:
    parameters:
        database_driver: pdo_mysql
        database_host: host database_port: 3306
        database_name: база_database data_user: login database_password: password

Changes can be made using filemanager or any FTPclient.

Content