Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 133,811
» Latest member: Harold98
» Forum threads: 176,953
» Forum posts: 1,239,707
Full Statistics
|
|
|
from 1.4.13 to 1.6 |
Posted by: killer - 2010-08-17, 08:42 PM - Forum: 1.6 General Support
- Replies (3)
|
|
im going to upgrade my forum from 1.4.13 to 1.6
but I cannot find any change file download for 1.6 upgrade....
Do I need to upload all files from the complete package of 1.6?
Plz do a quick help.
Thanks
|
|
|
Add affiliates page |
Posted by: Zer[o] - 2010-08-17, 08:25 PM - Forum: 1.6 General Support
- Replies (9)
|
|
I need an affiliates page that i can just add links and maybe pictures to. I want it set under my banner with the donate button, memberlist button, search button, ect. Can anyone start me off on this or give me a page i can upload to my host?
|
|
|
Incorrect Login name showing |
Posted by: nuTTTz - 2010-08-17, 06:05 PM - Forum: 1.6 General Support
- Replies (10)
|
|
myBB ver 1.6.0
PhP ver 5.1.12
new installation
I tried a search, and went through the FAQ, and could not find anything specific to this issue.
What we have been seeing happening is this.
A new member will register, become approved, logout, log back in, and when they log back in the wrong user name appears at the top of the screen.
One particular user had the wrong name showing, logged out and back in, and a different wrong name would show.
Any help that eliminates this problem will be greatly appreciated.
Thank You
nuTTTz
|
|
|
What the Derek |
Posted by: MisterW - 2010-08-17, 01:50 PM - Forum: 1.6 General Support
- Replies (2)
|
|
It was working now suddenly this has come up
MyBB has experienced an internal SQL error and cannot continue.
SQL Error:
0 -
Query:
[READ] Unable to select database
Help??
|
|
|
Using JQuery on Mybb |
Posted by: Markwow - 2010-08-17, 11:03 AM - Forum: 1.6 General Support
- Replies (6)
|
|
I have read over lots of the posts about it and tried it but it keeps removing my editor when I add it into headerinclude. Here is my script
MouseX = 0;
MouseY = 0;
function getPageEventCoords(evt) {
var coords = {left:0, top:0};
if (evt.pageX) {
coords.left = evt.pageX;
coords.top = evt.pageY;
} else if (evt.clientX) {
coords.left =
evt.clientX + document.body.scrollLeft - document.body.clientLeft;
coords.top =
evt.clientY + document.body.scrollTop - document.body.clientTop;
// include html element space, if applicable
if (document.body.parentElement && document.body.parentElement.clientLeft) {
var bodParent = document.body.parentElement;
coords.left += bodParent.scrollLeft - bodParent.clientLeft;
coords.top += bodParent.scrollTop - bodParent.clientTop;
}
}
MouseX = coords.left;
MouseY = coords.top;
return coords;
}
function CreateFloatingDiv( x, y, id )
{
var Exists = $( '#'+id );
if ( Exists[0] )
{
Exists[0].style.left = x + 'px';
Exists[0].style.top = y + 'px';
Exists[0].style.display = 'none';
Exists.show( 'fast' );
return;
}
var div = document.createElement( 'div' );
div.style.left = x + 'px';
div.style.top = y + 'px';
div.style.position = "absolute";
div.style.background = "#FFF";
div.style.border = "1px solid #777";
div.style.padding = '5px';
div.style.color = '#555';
div.style.fontSize = '11px';
div.style.display = 'none';
div.className = "top";
div.id = id;
document.body.appendChild( div );
$( div ).show( 'fast' );
return div;
}
function OpenEvent( $data, $id )
{
var div = CreateFloatingDiv( MouseX, MouseY, 'Event_'+$id );
if (!div) return false;
div.innerHTML += 'Fetching..';
$(div).click( function(){ $(div).hide(); } );
$( div ).show( 'fast' );
$.get( '/index.php', 'aj=1&' + $data, function( d ) { div.innerHTML = d; }, "html" );
return false;
}
function CloseThis( pChild, reason )
{
if ( $( pChild ).hasClass("top") )
{
if ( reason )
{
pChild.innerHTML = reason;
$(pChild).fadeOut( 3000 );
}
else
{
$( pChild ).hide();
}
return false;
}
return CloseThis( pChild.parentNode, reason );
}
function OpenURLInBox( $name, $url )
{
var div = CreateFloatingDiv( MouseX, MouseY, $name );
if (!div) return false;
div.innerHTML += 'Fetching..';
//$(div).click( function(){ $(div).hide(); } );
$( div ).show("normal");
$.get( $url, '', function( d ) { div.innerHTML = d; }, "html" );
return false;
}
What do I need to do to it so it wont mess up prototype or do i need to put something less in headerinclude? Please let me now asap.
Thanks
|
|
|
|