How to know whether is the GD library enable at server end? can use php info or the below script:
GD library cheecking:
<?
showGDinformation();
function showGDinformation()
{
echo “GD support on your server: “;
// Check if the function gd_info exists (great way to know if gd is istalled)
if(function_exists(”gd_info”))
{
echo “YES”;
$gd = gd_info();
// Show status of all values that might be supported(unsupported)
foreach($gd [...]
Monatsarchiv für November 2009
How to check whether GD enabled at your server or not?!
Can try out the belwo script:
GD library cheecking:
<?
showGDinformation();
function showGDinformation()
{
echo “GD support on your server: “;
// Check if the function gd_info exists (great way to know if gd is istalled)
if(function_exists(”gd_info”))
{
echo “YES”;
$gd = gd_info();
// Show status of all values that might be supported(unsupported)
foreach($gd as $key => $value)
{
echo [...]
How to check whether GD enabled at your server or not?!
Can try out the belwo script:
GD library cheecking:
<?
showGDinformation();
function showGDinformation()
{
echo “GD support on your server: “;
// Check if the function gd_info exists (great way to know if gd is istalled)
if(function_exists(”gd_info”))
{
echo “YES”;
$gd = gd_info();
// Show status of all values that might be supported(unsupported)
foreach($gd as $key => $value)
{
echo [...]
-
du durchsuchst derzeit das http://blog.iluvbear.com Archiv nach dem Monat November 2009.
Seiten
Archiv
Kategorien
- Uncategorized (12)
