how to disable registrations in my site? this is my image uploading site,with mihalism script. i just want only me using the site. waiting for reply thanks!
Add this on top of the signup/registration php file: $disabled = 1; if($disabled == 1) { echo "Sorry, registrations are disabled."; exit(); } Code (markup):