orcinus-search/orcinus/config.ini.php
Brian Huisman 4f679114c3 Misc updates
Some small formatting updates.

Assert that some strings have a length before accessing them via string offset.
2024-05-16 12:30:53 -04:00

15 lines
361 B
PHP

<?php /* ***** Orcinus Site Search - User Configuration ************ */
// ***** MySQL
$_DDATA['hostname'] = 'localhost';
$_DDATA['username'] = 'username';
$_DDATA['password'] = 'password';
$_DDATA['database'] = 'database';
$_DDATA['tbprefix'] = 'os__';
// ***** Administration
$_RDATA['admin_username'] = 'admin';
$_RDATA['admin_password'] = 'password';
?>