2
Codeigniter 프레임 워크에서 웹 사이트를 실행하고 있습니다. 나는 postgresql을 사용하고있다. 나는 APPFOG 문서를 읽었습니다. 하지만 postgres 데이터베이스를 구성하는 방법은 분명하지 않습니다. 어디에서 데이터베이스를 호스팅합니까? 데이터베이스를 어떻게 업데이트합니까? 데이터베이스 연결을 돌볼 것APPFOG의 PostgreSQL 데이터베이스가있는 CodeIgniter 웹 사이트
<pre>
$VCAP_SERVICES = getenv("VCAP_SERVICES");
$VCAP_SERVICES_json = json_decode($VCAP_SERVICES, true);
$VCAP_SERVICES_postgresql_config = $VCAP_SERVICES_json["postgresql-9.1"][0]["credentials"];
$db['default']['hostname'] = $VCAP_SERVICES_postgresql_config['hostname'];
$db['default']['username'] = $VCAP_SERVICES_postgresql_config['user'];
$db['default']['password'] = $VCAP_SERVICES_postgresql_config['password'];
$db['default']['database'] = $VCAP_SERVICES_postgresql_config['name'];
</pre>
와 응용 프로그램/설정 내부