Thumbnails Bug - Camera

Dec 17, 2017
151
19
Hi Devbest,
today I have arranged both the camera and the furno photo. however, the thumbnails of the rooms do not work. I take the picture but no image is created in the folder. :rolleyes:


Thumbnailup.php
PHP:
<?php
if(!empty($GLOBALS['HTTP_RAW_POST_DATA'])){
    $file = $_GET['roomid'].'.png';
    $fp = fopen($file, "wb");
    fwrite($fp, $GLOBALS['HTTP_RAW_POST_DATA']);
    fclose($fp);
} else {
    echo 'Not Found.';
}
?>

Thank you very much to those who will be able to help me, sorry for my bad english!
 
Last edited:

Joshhh

Member
Apr 13, 2016
323
172
I've had a few issues like this before, the thing that helped me was to chmod 777 your folders..

Aka give the following folders the permissions;
  • pictures
  • thumbnails
(and something else)

Allow all of these folders to have Full Control. If it asks for Group / Usernames I usually do them all but try that
 

Users who are viewing this thread

Top