Invalid version ($php_version) Installed" : "Version $php_version Installed"; ?>
Database
Available":"Not Available";?>
config.php
Writeable":"Not Writeable"; ?>
Cache Directory (cache/)
Writeable":"Not Writeable"; ?>
Mail Merge Template Directory (test/wordtemplatedownload/)
Writeable":"Not Writeable You might experience issues with the word template feature. You might visit the link for more details : forums"; ?>
Uploads Directory (test/upload/)
Writeable":"Not Writeable You might experience problems with the file attachments feature. You might visit the following link for more details : attachment issue"; ?>
Writeable":"Not Writeable. You might experience problems with the email templates feature. You might refer to the following link for more details :email templates issue "; ?>
GD graphics library version 2.0 or later
GD Library not configured in your PHP installation. Check out our online documentation for tips on enabling this library. You can ignore this error and continue your vtiger CRM installation, however the chart images simply won't work.";
}
else {
if (!function_exists('gd_info'))
{
eval($gd_info_alternate);
}
$gd_info = gd_info();
if (isset($gd_info['GD Version'])) {
$gd_version = $gd_info['GD Version'];
$gd_version=preg_replace('%[^0-9.]%', '', $gd_version);
if ($gd_version > "2.0") {
echo "Version $gd_version Installed";
}
else {
echo "Version $gd_version Installed.";
}
}
else {
echo "GD Library available, but not properly configured in your PHP installation. You can ignore this error and continue your vtiger CRM installation, however the chart images simply won't work.";
}
}
?>