422
MVP422 MVP
Reactions
-
Re: Cant "attach a file" with File Upload 1.5.2
sounds like a js glitch or permissions error .. but then that wouldnt be apparent at the time you mention. I reckon a error in your js, use firebug. Open the page, click console, then refresh page ..… (View Post)1 -
Re: Where is the head tag?
Use grep if you have it, or in vanilla main forum folder you downloaded, find default.master.php file , then in themes folder on your server add views folder and paste default.master.php file in ther… (View Post)1 -
Re: Is there is any way to limit signature length?
Or optionally: easiest method $string = (strlen($string) > 13) ? substr($string,0,10).'...' : $string; (View Post)1 -
Re: Is there is any way to limit signature length?
A quick snippet I found online which you could implement. <?phpfunction cutAfter($string, $len = 30, $append = '...') { return (strlen($string) > $len) ? substr($string, 0, $len - strlen($appen… (View Post)1 -
Re: Login Popup is blotching into background of header onclick...
open your site in firefox, open firebug. click console, then refresh your page You seem to be running some weird script: var issuuConfig = { guid: "6fe0f7fe-f3f7-4241-8f55-d24609598ff0", do… (View Post)1