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? Quote Link to comment 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. Quote Link to comment 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 Quote Link to comment 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']); } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.