srchub-install

srchub-install Commit Details


Date:2017-05-04 00:32:49 (7 years 7 months ago)
Author:Natalie Adams
Branch:master
Commit:7e8db01461d4f346bef6b1ea060336ab038c2a32
Parents: 7bb537735c3bacb1f4e8e136d931883a2068b2f5
Message:updating srchub config to use sqlite

Changes:

File differences

idf.php
101101
102102
103103
104
104
105105
106106
107107
......
202202
203203
204204
205
205
206206
207207
208208
209
209
210210
211211
212212
213213
214214
215215
216
216
217217
218218
219219
# $cfg['idf_base'] = '/index.php';
# $cfg['url_base'] = 'http://www.mydomain.com';
#
$serverIP = $_SERVER['SERVER_ADDR'];
$serverIP = isset($_SERVER['SERVER_ADDR']) ? $_SERVER["SERVER_ADDR"] : "127.0.0.1";
$cfg['idf_base'] = '';
$cfg['url_base'] = "http://$serverIP";
#
# Enter one of the supported database engines: SQLite, MySQL, or PostgreSQL
$cfg['db_engine'] = 'MySQL';
$cfg['db_engine'] = 'SQLite';
# The database name for MySQL and PostgreSQL, and the absolute path
# to the database file if you are using SQLite.
$cfg['db_database'] = 'indefero';
$cfg['db_database'] = '/home/www/srchub.sqlite';
# The database server to connect.
$cfg['db_server'] = 'localhost';
# Information about the database user.
$cfg['db_login'] = 'root';
$cfg['db_password'] = 'giantFog56';
$cfg['db_password'] = '';
# The version of your database server, only needed for MySQL
$cfg['db_version'] = '5.1';

Archive Download the corresponding diff file

Branches

Number of commits:
Page rendered in 0.05131s using 14 queries.