Izdomāju bakalaura darbam taisīt user authentification ar kodiem uz bildēm. Tam ir nepieciešama
GD bibliotēka.
No sākuma uzinstalēju biblioteku no
tejienes.
Tālāk jau defaultās komandas:
./conifigure&&make&&make install.
Neiet... Ieguglēju, un izrādījās ka ir šāda komandele vajadzīga:
sudo aptitude install php5-gdPēc tam restartējam apache:
sudo /etc/init.d/apache2 restartUn ievietojam kādā php šādu kodu:
if (function_exists('imagecreate')) {
echo "GD Library is enabled <br>\r\n<pre>";
var_dump(gd_info());
echo "</pre>";
} else {
echo 'Sorry, you need to enable GD library first';
}
Vajadzētu parādīties kaut kam šādam:
GD Library is enabled
array(12) {
["GD Version"]=>
string(13) "2.0 or higher"
["FreeType Support"]=>
bool(true)
["FreeType Linkage"]=>
string(13) "with freetype"
["T1Lib Support"]=>
bool(true)
["GIF Read Support"]=>
bool(true)
["GIF Create Support"]=>
bool(true)
["JPG Support"]=>
bool(true)
["PNG Support"]=>
bool(true)
["WBMP Support"]=>
bool(true)
["XPM Support"]=>
bool(false)
["XBM Support"]=>
bool(false)
["JIS-mapped Japanese Font Support"]=>
bool(false)
}