Installation instructions - vl-it-russia-org/VDL-PhpPdoPostgreSQL GitHub Wiki
You need sever /computer with WebServer (Apache) + PHP + PDO (php library) + PostgreSQL.
-
Download/clone all project files.
-
In zip file DbDump2025-06-24.zip You should upload PostgreSQL database dump into Your PostgreSQL database.
-
Edit file: setup/set#tings.php You should specify Your info.
$BaseHost='https://kolya.it-russia.org/PG2025/'; //-- Your server name and folder where You put files of project
$Default_Lang='RU'; //-- Default language for application, currently system supports RU/EN/FR languages
$db_host = "localhost"; //-- PostgreSQL server (how PHP/Apache see it)
$db_base = "kolya"; //-- I create in PostgreSQL database with name kolya, You could change it
$TmpFilesDir='/var/var/Files/Kolya'; //-- Where is temp files will be located (Apache user should have permition to write there)
$SecTxtMsg='-Your secret combination-'; //-- 20-50 chars text combination for security purposes
$db_user="kolya"; //-- I create in PostgreSQL user kolya, You could change it
$db_pass="-- Pass to DB--"; //-- Password for db_user to PostgreSQL database
//=====================================================
function GetBaseHost() {
return 'https://kolya.it-russia.org/PG2025/'; //-- Should be same as $BaseHost
} //=====================================================