gilestodd Posted May 29, 2012 Share Posted May 29, 2012 I've got a deleting images function I picked up from a forum post on here: http://www.phpfreaks.com/forums/index.php?topic=244816.0&fb_source=message But im getting this error when I delete an image. Warning: unlink(img.jpg) [function.unlink]: No such file or directory in /home/s519970/public_html/admin/deletecontent.php on line 20 The image gets deleted but im just assuming its looking for it again and not finding it. Could anyone advise me on how to remove this error? Link to comment https://forums.phpfreaks.com/topic/263343-warning-unlinkimgjpg-functionunlink-no-such-file-or-directory/ Share on other sites More sharing options...
.josh Posted May 29, 2012 Share Posted May 29, 2012 wrap your unlick in a is_file condition. Link to comment https://forums.phpfreaks.com/topic/263343-warning-unlinkimgjpg-functionunlink-no-such-file-or-directory/#findComment-1349610 Share on other sites More sharing options...
gilestodd Posted May 29, 2012 Author Share Posted May 29, 2012 I'm still getting that error with this code for the unlink: is_file(unlink("img/albumOne/".$_POST['fileToDelete'])); I'm a beginner with PHP so if you could explain your advise that would be extremely helpful and very appreciated. Thanks Link to comment https://forums.phpfreaks.com/topic/263343-warning-unlinkimgjpg-functionunlink-no-such-file-or-directory/#findComment-1349653 Share on other sites More sharing options...
.josh Posted May 29, 2012 Share Posted May 29, 2012 if ( is_file("img/albumOne/".$_POST['fileToDelete']) ) { unlink("img/albumOne/".$_POST['fileToDelete']); } Link to comment https://forums.phpfreaks.com/topic/263343-warning-unlinkimgjpg-functionunlink-no-such-file-or-directory/#findComment-1349656 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.