So with the new updates to wpmu I no longer have to worry about long lists of links from blog spammers, but my main problem is now are like 1000 character long blog titles.
I set the signup form to have a maximum character length of 50, but you can still spam it with a script.
I also tried to write a little script that would limit the title to 50 chars on the back end,
$tempTitle = $filtered_results['blog_title'];
$limit = 50;
if (strlen($tempTitle) > $limit)
$tempTitle = substr($tempTitle, 0, strrpos(substr($tempTitle, 0, $limit), ' ')) . '...';
$blog_title = $tempTitle;
put the following around line 310 in wp-signup.php
Still log in every morning to super long blog titles advertising ring tones or whatever. Where exactly would I have to stop this madness? I am not trying to stop the spammers (not yet anyway) I just want to limit blog titles to less than 50 chars so that it doesn't mess up my front page formating so much.
Any help would be very much appreciated.