I wanted to post a resolution to my problem that was solved with Cent's help.
the problem occurred due to my site being hosted on a shared host, and not in the root directory..as a result the code was looking for images in the wrong locations. I had the thumbnail showing up as a black square and the full image would not load because it was calling the root of my host, not my pligg.
The solution is as
in the setting file, I changed the original code to:
PHP Code:
define('module_imageupload_basedir', $_SERVER['DOCUMENT_ROOT']."/pliggroot/");
and in the thumbs.php file i changed the original code to
PHP Code:
if ($mypliggbase != "")
{
$mypliggbase = "/home/content/u/s/e/username/html/pliggroot/";
} else {
$mypliggbase = "/home/content/u/s/e/username/html/pliggroot/";
}
Hope this helps the community, and thanks to Cent for a great module and his help for helping me debug this