Posts

Showing posts with the label image-uploading

image upload works on localhost but not online

image upload works on localhost but not online I know that this question has been answered many times, but i still have trouble uploading images.. Image upload works fine on localhost, but doesn't work on remote server(linux) I have already tried solutions related this question. And I also tried permissions to change on 777 and 755 but still it was not working. But it still doesn't work. Thanks For any Help. //==================== Insert Section ======================== $tablename='tbl_slider'; if(isset($_REQUEST['submit']) && $_REQUEST['submit']=='Submit') { $heading=$_REQUEST['heading']; $content = $_REQUEST['content']; $data = array( 'heading' => $heading, 'content' => $content ); $lastid=$obj->insert($tablename,$data); if($lastid>0) { $uploadpath='../upload/slider/'; $img=$obj->ImageUpload('image',$uplo...