Joomla is a powerful Content Management System (CMS) written in PHP. I just installed Joomla 1.5.6. If you are trying to install the famous Joomla plugin called “Simple Image Gallery” and receive the following message when viewing your gallery:
Notice: Undefined variable: gd_support in /…/…/plugins/content/jwsig.php on line 83
Solution:
At line 75 of jwsig.php just change the
if(function_exists("gd_info")) {
to
if(!function_exists("gd_info")) {
Reference
Notice: Undefined variable: gd_support in /…/…/plugins/content/jwsig.php on line 83
Solution:
At line 75 of jwsig.php just change the
if(function_exists("gd_info")) {
to
if(!function_exists("gd_info")) {
Reference