VideoHelp Forum
+ Reply to Thread
Page 2 of 2
FirstFirst 1 2
Results 31 to 60 of 60
Thread
  1. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    Ok I'm back, cant find it to delete it, however there seams to be another problem.

    Tried to change my personal picture, several attempts to upload a new one, nothing seam to happen, then tried to link to one, that did not work.

    <<< Even tried reducing size below 6K, ended up with what you can see now !!
    Quote Quote  
  2. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    Linking is not possible. Try upload it again because it should work, remember that it is both a 6k limit and a height and width limit.
    Quote Quote  
  3. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    okey it doesnt work anymore...
    Quote Quote  
  4. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    Originally Posted by Baldrick
    okey it doesnt work anymore...
    Yep, its working again
    Quote Quote  
  5. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    So What happened ?

    Rather interesting page view

    Welcome to cheats.st Have fun Paul!
    Quote Quote  
  6. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    the apache server automatically restarted and when it started it just pointed to another user on the server....but it should be fixed now.
    Quote Quote  
  7. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    Ok I found a bug

    Type some text in a post, but then think (Ill make that bit bold etc)

    Place the cursor where you want the bold to start and hit the B* icon.

    The [ b ] is placed at the end of the text ?

    And if its a long post you won't even noticed it happens same with the others.[/i][/b]
    Quote Quote  
  8. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    And if you change your mind, and remove the [ b ] then hit post like I did above and it adds the closed function anyway.
    Quote Quote  
  9. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    i think it is not possible to fix...or else would the phpbb creators already have done that. but you are welcome to check it out
    here is the javascript code

    Code:
    function bbstyle(bbnumber) {
    
    	donotinsert = false;
    	theSelection = false;
    	bblast = 0;
    
    	if (bbnumber == -1) { // Close all open tags & default button names
    		while (bbcode[0]) {
    			butnumber = arraypop(bbcode) - 1;
    			document.post.message.value += bbtags[butnumber + 1];
    			buttext = eval('document.post.addbbcode' + butnumber + '.value');
    			eval('document.post.addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
    		}
    		imageTag = false; // All tags are closed including image tags :D
    		document.post.message.focus();
    		return;
    	}
    
    	if ((clientVer >= 4) && is_ie && is_win)
    		theSelection = document.selection.createRange().text; // Get text selection
    
    	if (theSelection) {
    		// Add tags around selection
    		document.selection.createRange().text = bbtags[bbnumber] + theSelection + bbtags[bbnumber+1];
    		document.post.message.focus();
    		theSelection = '';
    		return;
    	}
    
    	// Find last occurance of an open tag the same as the one just clicked
    	for (i = 0; i < bbcode.length; i++) {
    		if (bbcode[i] == bbnumber+1) {
    			bblast = i;
    			donotinsert = true;
    		}
    	}
    
    	if (donotinsert) {		// Close all open tags up to the one just clicked & default button names
    		while (bbcode[bblast]) {
    				butnumber = arraypop(bbcode) - 1;
    				document.post.message.value += bbtags[butnumber + 1];
    				buttext = eval('document.post.addbbcode' + butnumber + '.value');
    				eval('document.post.addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
    				imageTag = false;
    			}
    			document.post.message.focus();
    			return;
    	} else { // Open tags
    
    		if (imageTag && (bbnumber != 14)) {		// Close image tag before adding another
    			document.post.message.value += bbtags[15];
    			lastValue = arraypop(bbcode) - 1;	// Remove the close image tag from the list
    			document.post.addbbcode14.value = "Img";	// Return button back to normal state
    			imageTag = false;
    		}
    
    		// Open tag
    		document.post.message.value += bbtags[bbnumber];
    		if ((bbnumber == 14) && (imageTag == false)) imageTag = 1; // Check to stop additional tags after an unclosed image tag
    		arraypush(bbcode,bbnumber+1);
    		eval('document.post.addbbcode'+bbnumber+'.value += "*"');
    		document.post.message.focus();
    		return;
    	}
    	storeCaret(document.post.message);
    }
    Quote Quote  
  10. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    Hi

    Don't see why it has to close them anyway, if you forget then nothing will go wrong, then the person will have to edit. change cont so that it never works would need to look at it more.

    I just installed RC4, so going to be a little busy dam apache was blocking read access to my avatar's, and I thought it was the new install..

    Submit the bug, maybe nobody has spotted it... Me I press, click thump, what does this do, on everything.
    Quote Quote  
  11. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    Any good ?


    <HTML>
    <HEAD>
    <SCRIPT>
    function storeCaret (textEl) {
    if (textEl.createTextRange)
    textEl.caretPos = document.selection.createRange().duplicate();
    }
    function insertAtCaret (textEl, text) {
    if (textEl.createTextRange && textEl.caretPos) {
    var caretPos = textEl.caretPos;
    caretPos.text =
    caretPos.text.charAt(caretPos.text.length - 1) == ' ' ?
    text + ' ' : text;
    }
    else
    textEl.value = text;
    }
    </SCRIPT>
    </HEAD>
    <BODY>
    <FORM NAME="aForm">
    <TEXTAREA NAME="aTextArea" ROWS="5" COLS="80" WRAP="soft"
    ONSELECT="storeCaret(this);"
    ONCLICK="storeCaret(this);"
    ONDBLCLICK="storeCaret(this);"
    ONKEYUP="storeCaret(this);"
    >
    Kibology for all.
    All for Kibology.
    </TEXTAREA>


    <INPUT TYPE="text" NAME="aText" SIZE="80" VALUE="Scriptology">


    <INPUT TYPE="button" VALUE="insert at caret"
    ONCLICK="insertAtCaret(this.form.aTextArea,
    this.form.aText.value);"
    >
    </FORM>
    </BODY>
    </HTML>
    Quote Quote  
  12. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    no...i want everything done so I can just copy and paste into phpbb....
    Quote Quote  
  13. Hey Bladrick the reactivate your account thing is a bit annoying for people who use web based accounts....if you have a good reason i can understand
    Quote Quote  
  14. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    reactivate??
    Quote Quote  
  15. with your profile..when you change your profile i have to reactivate
    Quote Quote  
  16. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    I dont, neither when I used my testusers....does it always happens whatever you change in your profile?
    Quote Quote  
  17. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    Reactivate only works if you change an email address or password, anything else and it should not do anything.

    Mine (In here) always works this way
    Quote Quote  
  18. well i always put my password so that might be he problem...well dats ok
    Quote Quote  
  19. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    it will only happen if you change the email. not by only changing password.
    Quote Quote  
  20. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    Ok, why is this happening.

    When I upload my avatar its transparent, but gets changed by the phpBB ?

    here is the original image I uploaded


    But as soon as its uploaded, the transparency goes
    Never noticed this before, I need to go and ask for my money back from those people
    Quote Quote  
  21. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    Well it must be RC2. As RC4 is OK, unless you have a mod on it.
    Quote Quote  
  22. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    it is transparent for me.
    Quote Quote  
  23. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    That's because you nicked my picture and replaced it or fixed it.
    I tried several last night, having had it brought to my attention
    Quote Quote  
  24. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    no i havent done anything.
    Quote Quote  
  25. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    Yer if you say so.... 8)
    Quote Quote  
  26. Banned
    Join Date
    Jun 2001
    Location
    UK
    Search Comp PM
    So what am I ?

    I can see the ranking is overflowing ?

    I think I should be

    a, "chief cook and bottle washer"

    b, "Mr. Big"

    c, "Better than the average bear"

    d, "Baldrick's main man"
    Quote Quote  
  27. The forum search engine appears to be down. The search results say something like:
    • General Error

      Couldn't delete old search id sessions

      DEBUG MODE
    and then it list a bunch of weird text
    Quote Quote  
  28. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    fixed.
    Quote Quote  
  29. Member
    Join Date
    Feb 2001
    Location
    Berlin, Germany
    Search Comp PM
    Quote Quote  
  30. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    fixed the poll editing.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!