我正在尝试在appfog.com上部署concrete5 但是不能使用concrete5 wizzard(前端gui来设置它),因为appfog不提供mysql细节。它根据环境变量给出它(参考 - https://docs.appfog.com/services/mysql#php)
我使用以下命令配置了config / site.php,我需要配置哪些其他文件才能使concrete5启动并运行。
配置/ 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');
答案 0 :(得分:0)
您不必编辑任何其他文件,但您可能需要将files /,config /,packages /的文件夹权限更改为可写。
此处有更多详情:
http://www.concrete5.org/documentation/installation/installing_concrete5/