Hmm im trying to remember if one exists, theres that many mods out there, maybe if it doesn't exist already you could always get it coded cheaply.
I had tried to search in Big G...But I did't Get any MOD for my web directories to protect from sub pages submission...
if you need it to be automatic: In file submit.php find line: if (strlen (trim ($data['URL'])) > 0 && !preg_match ('#^http[s]?:\/\/#i', $data['URL'])) $data['URL'] = "http://".$data['URL']; Code (markup): change it to: if (strlen (trim ($data['URL'])) > 0) { $data['URL'] = parse_url($data['URL'], PHP_URL_HOST); if(!preg_match ('#^http[s]?:\/\/#i', $data['URL'])) $data['URL'] = "http://".$data['URL']; } Code (markup): If you wish rather to display error for incorrect URL on submit page - require little bit more code (5 minutes). - D.
sorry for the off topic // hi selvam... nice to see you in DP.. Hope u got my email .Look at my location
Great Post! thanks by the way any link to the rest of the code to display an incorrect URL message? thanks! MOG