Hi,
i know what the problem is, try these custom settings for your board. That should do the trick.
search and replace
Code:
$img_filepath = $slider_img_filepath . 'slide_' . $i . '.jpg';
$success = imagejpeg($sprite, DIR . ($img_filepath[0] != DIRECTORY_SEPARATOR ? DIRECTORY_SEPARATOR : '') . $img_filepath);
with
Code:
$img_filepath = $slider_img_filepath . 'slide_' . $i . '.jpg';
$success = imagejpeg($sprite, '/home/theborg/www/arcade' . ($img_filepath[0] != DIRECTORY_SEPARATOR ? DIRECTORY_SEPARATOR : '') . $img_filepath);
and
Code:
//your slider folder - has to be read and writeable
//folder where all slider files are saved
$slider_img_filepath = 'slider/';
with
Code:
//your slider folder - has to be read and writeable
//folder where all slider files are saved
$slider_img_filepath = 'community/slider/';
Cheers