Вопрос

I am trying to deploy concrete5 on appfog.com But cannot use the concrete5 wizzard(front end gui to set it up) as appfog does not provide the mysql details. It gives it in terms of an environment variable (refer to - https://docs.appfog.com/services/mysql#php)

I configured the config/site.php with the following, what other files do I need to configure to get concrete5 up and running.

Config/site.php

    <?php 
    define('DB_SERVER', 'mysql.xxx.com');
    define('DB_USERNAME', 'sidharthmadan');
    define('DB_PASSWORD', 'thisIsThePass');
    define('DB_DATABASE', 'c5db');
    define('PASSWORD_SALT','fGtuyHhYrsn6865Gk7b8bho09HV6h');
    define('AVATAR_NONE', ASSETS_URL_IMAGES . '/spacer.gif');
Это было полезно?

Решение

You won't have to edit any other files, but you may need to change the folder permissions of files/, config/, packages/ to writable.

More details here:

http://www.concrete5.org/documentation/installation/installing_concrete5/

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top