• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] Moderator issue

Started by vipe,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

vipeTopic starter

Notice: Undefined index: image in /home/username/public_html/moderator/setts.php on line 16

Notice: Use of undefined constant uniqid - assumed 'uniqid' in /home/username/public_html/moderator/setts.php on line 17
  •  

PHPVibe A.

Yup, this is an small bug.

$extension = end(explode('.', $_FILES['image']['name']));
$thumb = ABSPATH.'/uploads/'.nice_url($_FILES['site-logo']['name']).uniqid.'.'.$extension;


should be

$extension = end(explode('.', $_FILES['site-logo']['name']));
$thumb = ABSPATH.'/uploads/'.nice_url($_FILES['site-logo']['name']).uniqid().'.'.$extension;


Thanks for reporting.

Similar topics (7)