Anatomy of isp.conf.php

From Sohowiki
(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
 +
===Example of typical isp.conf.php===
 
<pre>
 
<pre>
 
<?php exit; ?>
 
<?php exit; ?>
Line 25: Line 26:
  
 
template_lib=/home/example.com/public_html/sohoadmin/program/modules/site_templates/pages
 
template_lib=/home/example.com/public_html/sohoadmin/program/modules/site_templates/pages
 +
undercon=
 +
 +
map_obj=enabled
 +
df_template_cat=Neutral
 +
 +
#########################################################
 +
</pre>
 +
 +
 +
===What to write if you're building an auto-installer===
 +
Only things in [brackets] must change from installation to installation. Anything not in [brackets] can remain the same accross all installations.
 +
<pre>
 +
<?php exit; ?>
 +
 +
#########################################################
 +
### SOHOLAUNCH V4.8 CONFIGURATION SETUP
 +
#########################################################
 +
 +
this_ip=[domain name]
 +
 +
db_server=[address of database server]
 +
db_name=[name of database created for this site to use]
 +
db_un=[username assigned to database]
 +
db_pw=[password assigned to database]
 +
 +
user_table=login
 +
cgi_bin=/[full server path to docroot folder]/sohoadmin/tmp_content
 +
doc_root=/[full server path to docroot folder]
 +
 +
dflogin_user=[initial username for logging-in to sitebuilder]
 +
dflogin_pass=[initial password for logging-in to sitebuilder]
 +
 +
 +
lang_set=english.php
 +
lang_dir=/[full server path to docroot folder]/sohoadmin/language
 +
 +
template_lib=/[full server path to docroot folder]/sohoadmin/program/modules/site_templates/pages
 
undercon=
 
undercon=
  

Revision as of 16:33, 25 August 2006

Example of typical isp.conf.php

<?php exit; ?>

#########################################################
### SOHOLAUNCH V4.8 CONFIGURATION SETUP
#########################################################

this_ip=example.com

db_server=localhost
db_name=my_database
db_un=my_database_username
db_pw=my_database_password

user_table=login
cgi_bin=/home/example.com/public_html/sohoadmin/tmp_content
doc_root=/home/example.com/public_html

dflogin_user=admin
dflogin_pass=admin


lang_set=english.php
lang_dir=/home/example.com/public_html/sohoadmin/language

template_lib=/home/example.com/public_html/sohoadmin/program/modules/site_templates/pages
undercon=

map_obj=enabled
df_template_cat=Neutral

#########################################################


What to write if you're building an auto-installer

Only things in [brackets] must change from installation to installation. Anything not in [brackets] can remain the same accross all installations.

<?php exit; ?>

#########################################################
### SOHOLAUNCH V4.8 CONFIGURATION SETUP
#########################################################

this_ip=[domain name]

db_server=[address of database server]
db_name=[name of database created for this site to use]
db_un=[username assigned to database]
db_pw=[password assigned to database]

user_table=login
cgi_bin=/[full server path to docroot folder]/sohoadmin/tmp_content
doc_root=/[full server path to docroot folder]

dflogin_user=[initial username for logging-in to sitebuilder]
dflogin_pass=[initial password for logging-in to sitebuilder]


lang_set=english.php
lang_dir=/[full server path to docroot folder]/sohoadmin/language

template_lib=/[full server path to docroot folder]/sohoadmin/program/modules/site_templates/pages
undercon=

map_obj=enabled
df_template_cat=Neutral

#########################################################
Personal tools