[nextBBS]

Warning: getimagesize(servers/1/attachments/135.jpg) [function.getimagesize]: failed to open stream: No such file or directory in /home/nextbbs/wwwroot/nextbbs.com/helpers/imagetools.php (311)
at getimagesize("servers/1/attachments/135.jpg", "Array") (/home/nextbbs/wwwroot/nextbbs.com/helpers/imagetools.php:311)
at ImageTools->getPicInfo("servers/1/attachments/135.jpg") (/home/nextbbs/wwwroot/nextbbs.com/topic.php:302)
at Topic()() (/home/nextbbs/wwwroot/nextbbs.com/topic.php:17)
at require("/home/nextbbs/wwwroot/nextbbs.com/topic.php") (/home/nextbbs/wwwroot/nextbbs.com/index.php:442)

Source Code:
302        return $this->filename;
303    }
304
305    /**
306     * @param picpath String path to the image being inspected
307     * @return An array of information pertaining to that image
308     */
309    function getPicInfo($picpath)
310    {
311        $basicinfo getimagesize($picpath$extinfo);
312
313        // Read exif info from APP1,
314        require "helpers/exifReader.inc";
315        $per = new phpExifReader($picpath);
316        $per->processFile();
317        if($per->errno == 0)
318        {
319            $exifinfo $per->getImageInfo();
320        }
321        else

Variables: