Frequently Asked Questions (FAQ)

It is every thread. could it have anything to do with me using Firefox instead of internet explorer
 
Why do some posts appear as if the right-hand indent mark is in the middle of the page, rather than the text wrapping across the whole width of the page? And why does it sometimes happen some-and-some in the same post (like this)? :crazyeye: Is it just that they've pressed Enter a lot, for some reason?
 
Why do some posts appear as if the right-hand indent mark is in the middle of the page, rather than the text wrapping across the whole width of the page? And why does it sometimes happen some-and-some in the same post (like this)? :crazyeye: Is it just that they've pressed Enter a lot, for some reason?

More than likely, they typed the post in some other word processor and than copy/pasted it to the post. The format stayed the same as the word processor they typed it in.
 
Question, is it at all possible to change ones User name?
If so, how?
 
For someone who hasnt been here long, you'll probably get the name change.

I have gotten 4 (four!) so it'll probably be easily done for you. :)
It may take some days though for Thunderfall to notice your PM though.
 
Now here's smthing you don't see everyday.
This thing loaded
Spoiler :

/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 3.6.4
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2006 Jelsoft Enterprises Ltd. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/

/**
* Attempts to display a post via AJAX, falling back to opening a new window if AJAX not available
*
* @param integer Post ID
*
* @return boolean False
*/
function display_post(postid)
{
if (AJAX_Compatible)
{
vB_PostLoader[postid] = new vB_AJAX_PostLoader(postid);
vB_PostLoader[postid].init();
}
else
{
pc_obj = fetch_object('postcount' + this.postid);
openWindow('showpost.php?' + (SESSIONURL ? 's=' + SESSIONURL : '') + (pc_obj != null ? '&postcount=' + PHP.urlencode(pc_obj.name) : '') + '&p=' + postid);
}
return false;
};

// #############################################################################
// vB_AJAX_PostLoader
// #############################################################################

var vB_PostLoader = new Array();

/**
* Class to load a postbit via AJAX
*
* @param integer Post ID
*/
function vB_AJAX_PostLoader(postid)
{
this.postid = postid;
this.container = fetch_object('edit' + this.postid);
};

/**
* Initiates the AJAX send to showpost.php
*/
vB_AJAX_PostLoader.prototype.init = function()
{
if (this.container)
{
postid = this.postid;
pc_obj = fetch_object('postcount' + this.postid);
this.ajax = new vB_AJAX_Handler(true);
this.ajax.onreadystatechange(vB_PostLoader[postid].ajax_check);
this.ajax.send('showpost.php?p=' + this.postid,
'ajax=1&postid=' + this.postid +
(pc_obj != null ? '&postcount=' + PHP.urlencode(pc_obj.name) : '')
);
}
};

/**
* Onreadystate handler for AJAX post loader
*
* @return boolean False
*/
vB_AJAX_PostLoader.prototype.ajax_check = function()
{
var AJAX = vB_PostLoader[postid].ajax.handler;

if (AJAX.readyState == 4 && AJAX.status == 200)
{
vB_PostLoader[postid].display(AJAX.responseXML);

if (is_ie)
{
AJAX.abort();
}
}

return false;
};

/**
* Takes the AJAX HTML output and replaces the existing post placeholder with the new HTML
*
* @param string Postbit HTML
*/
vB_AJAX_PostLoader.prototype.display = function(postbit_xml)
{
if (fetch_tag_count(postbit_xml, 'postbit'))
{
this.container.innerHTML = this.ajax.fetch_data(fetch_tags(postbit_xml, 'postbit')[0]);
PostBit_Init(fetch_object('post' + this.postid), this.postid);
}
else
{ // parsing of XML failed, probably IE
openWindow('showpost.php?' + (SESSIONURL ? 's=' + SESSIONURL : '') + (pc_obj != null ? '&postcount=' + PHP.urlencode(pc_obj.name) : '') + '&p=' + this.postid);
}
};

/*======================================================================*\
|| ####################################################################
|| # Downloaded: 23:17, Wed Nov 22nd 2006
|| # CVS: $RCSfile$ - $Revision: 15091 $
|| ####################################################################
\*======================================================================*/

instead of a thread in C&C.

:crazyeye:

It works now, but still ....
 
For someone who hasnt been here long, you'll probably get the name change.

I have gotten 4 (four!) so it'll probably be easily done for you. :)
It may take some days though for Thunderfall to notice your PM though.
I remember "ansar the king", but what were the others?
 
Ansar_The_King as well.

Right?
 
Was the sever down for 20 minutes ? I couldn't access the site/forum. All other sites worked perfectly.
 
so blatantly should have been Ansar
 
TF wouldn't let me change my name when I asked...

and I don't even have 3,000 posts... :ack

but now I don't want it changed
 
Would you be allowed to Have a thread title;"SEX!!!" and then start the thread with;"Now that ive got your attention..."

Also, why do you have to ask permission for "Ask a __"threads?
 
Back
Top Bottom