Some fixes :)

This commit is contained in:
2025-01-16 10:16:01 +00:00
parent 87010acdcc
commit a4a65d5b4f
9 changed files with 160 additions and 12 deletions

43
file_copy_systems.php Normal file
View File

@@ -0,0 +1,43 @@
<?php
$conn = new mysqli('localhost', 'root', '5z#JaL', 'mz_logs');
if ($conn->connect_error) {
die('Connection failed: ' . $conn->connect_error);
}
$system = 'e5';
$stmt = $conn->prepare("SELECT path FROM php_files_log WHERE system = ?");
$stmt->bind_param("s", $system);
// loop through stmt results
$stmt->execute();
$stmt->bind_result($path);
while ($stmt->fetch()) {
$files[] = $path;
}
$stmt->close();
$conn->close();
foreach ($files as $file) {
// if file starts from /index.php remove it
if (strpos($file, '/index.php') === 0) {
$file = str_replace('/index.php', '', $file);
}
// if file doesn't have extension (any) leave it
if (strpos($file, '.') === false) {
continue;
}
// if ! file starts from /var/www add it in front
if (strpos($file, '/var/www/crm.e5.pl') !== 0) {
$file = '/var/www/crm.e5.pl' . $file;
}
// check if file exists
if (!file_exists($file)) {
echo 'File does not exist: ' . $file . PHP_EOL;
continue;
}
}
exit;