문제

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