From 9dd47f6b444eb61fa71d343aa50464241e3a823b Mon Sep 17 00:00:00 2001 From: 3x0k1d <3x0k1d@gmail.com> Date: Mon, 5 May 2025 07:57:42 +0300 Subject: [PATCH] change pass --- checkers/php-dbase.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/checkers/php-dbase.php b/checkers/php-dbase.php index cc339c3..d6e4709 100644 --- a/checkers/php-dbase.php +++ b/checkers/php-dbase.php @@ -9,7 +9,7 @@ $checker = new BaseModule( $checker->printInfo(); -$dbPath = '/tmp/test.dbf'; +$dbPath = '/home/u525748/php84test.ff14wiki.ru/www/tmp/test.dbf'; $def = array( array("date", "D"), @@ -18,13 +18,14 @@ $def = array( array("email", "C", 128), array("ismember", "L") ); - +echo "Я Тут"; if (!file_exists($dbPath)){ + echo "Я тута"; if (!dbase_create($dbPath, $def)) { echo "
Error! Unable to create database
"; } } - +echo "Я пу пу пу"; $db = dbase_open($dbPath, 0) or die("Error! Unable to open database file '$dbPath'.");