Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 133,836
» Latest member: allereifen365
» Forum threads: 176,958
» Forum posts: 1,239,728

Full Statistics

Latest Threads
max lines per post in myb...
Forum: General Support
Last Post: HAFOOCH
3 hours ago
» Replies: 2
» Views: 293
getting error using vbull...
Forum: Merge System Support
Last Post: skinmi
6 hours ago
» Replies: 2
» Views: 244
how do i remove this from...
Forum: Theme Support
Last Post: Laird
7 hours ago
» Replies: 1
» Views: 44
Incorrect jump to anchor
Forum: General Support
Last Post: Feathertail
8 hours ago
» Replies: 2
» Views: 174
ERROR
Forum: Merge System Support
Last Post: skinmi
8 hours ago
» Replies: 0
» Views: 25
Select all in [code] and ...
Forum: Tutorials
Last Post: Joey_Pham423
10 hours ago
» Replies: 46
» Views: 44,192
Copy PHP CODE
Forum: Plugin Releases
Last Post: Joey_Pham423
10 hours ago
» Replies: 5
» Views: 729
Captcha Problem Not Showi...
Forum: General Support
Last Post: wshl
Today, 12:48 AM
» Replies: 0
» Views: 213
YouTube Shorts URLs
Forum: General Support
Last Post: Omar G.
Yesterday, 09:10 PM
» Replies: 3
» Views: 7,634
InPlayTracker plugin Issu...
Forum: Plugin Support
Last Post: Omar G.
Yesterday, 09:03 PM
» Replies: 5
» Views: 394

 
  Edit Registration Agreement
Posted by: HSTChris - 2010-09-02, 10:35 AM - Forum: 1.6 General Support - Replies (4)

Hello.

When a user clicks register at my forum, the first thing they see is "The YREA Forum - Registration Agreement" - You can see it at this link:

http://forum.yrea.org.uk/member.php?action=register

Can you tell me how to edit the text in this message please? I would imagen its in Templates under Templates and Styles but I don't know what section it will be listen under.

Thank you in advance for your help Smile

Print this item

  Hiding Admin(Contact Us) Email Address
Posted by: Sahil_kr - 2010-09-02, 09:17 AM - Forum: 1.6 General Support - Replies (1)

I have signed in as different user,still i can see the contact us email address,how to hide it?

Print this item

  Deletion Of Main Admin Account
Posted by: Sahil_kr - 2010-09-02, 09:14 AM - Forum: 1.6 General Support - Replies (7)

What if i delete my main Admin A/c or ban it,who will b ethe admin then?
Suppose i am the main Admin with the User name Admin,then what will happen?

Print this item

  Colour Change Problem
Posted by: Sahil_kr - 2010-09-02, 09:04 AM - Forum: 1.6 General Support - Replies (3)

When i registered my self as a Super Moderator,At the main home,my name colour is blue,but when online,it becomes Pink?

Print this item

  Admin Login Panel Problem / help please!
Posted by: Valaki - 2010-09-02, 07:00 AM - Forum: 1.6 General Support - Replies (3)

I upgraded my forum to 1.6 and my admin panel modified:

http://www.imagecross.com/11/image-hosti...vtelen.JPG

Huh

Print this item

  Customize your forum
Posted by: Wise penguin - 2010-09-02, 06:46 AM - Forum: 1.6 General Support - Replies (1)

How do you customize your foum?

Like add background image, footer, banner, ect?

Print this item

  I want to take the current database to a new MyBB
Posted by: iGoGo - 2010-09-02, 06:11 AM - Forum: 1.6 General Support - Replies (1)

I got so many errors at my MyBB Forum.
So I would like to take a database backup.
But I only want to restore the most important database tables.
Like threads, posts, users, and so on.

Can anyone tell me what database tables that I need then.

I would upload it to a fresh uploaded MyBB forum.

I hope that anyone can help.
- Thanks

Print this item

  sql error showing ..
Posted by: jameel225 - 2010-09-02, 06:05 AM - Forum: 1.6 General Support - Replies (2)

hello dear when i m going to login my id its show this error ..

MyBB SQL Error

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
    1054 - Unknown column 'remember' in 'field list'
Query:
    SELECT uid,username,password,salt,loginkey,remember,passwordconvert,passwordconverttype FROM mybb_users WHERE username='-=jameel225=-' LIMIT 1

Please contact the MyBB Group for support.

Print this item

  As super admin can't access moderation.php
Posted by: Danny247 - 2010-09-02, 04:04 AM - Forum: 1.6 General Support - Replies (9)

I'm logged in as the super administrator and I am trying to view someone's IP by clicking the word Logged (the page is moderation.php) and I get the no permissions page.

Help!

Print this item

  Loops
Posted by: Tyler E. - 2010-09-02, 03:22 AM - Forum: 1.6 General Support - Replies (13)

This is the code I'm currently using to try and loop to show the prefixes and the usergroups that can use them.

The result is: http://www.jammingames.tk/forum/prefix.php
I'm trying to show the correct usergroup for the prefixes.
Also, the forum id's stretch out as far as needed on the page, I need a way to keep them within the page so you don't have to scroll.
And I can't quite get it, so I was wondering if someone could help me, thanks.

$prefix = $db->query("SELECT * from ".TABLE_PREFIX."prefix");
while ($query = $db->fetch_array($prefix)) {
	$title = $query['title'];
	$fid = $query['fid'];
	$gid = $query['gid'];
	$format = str_replace($title, "<font color='#4BB1FF'>$title</font>", $title);
		$groups2 = $db->query("SELECT * FROM ".TABLE_PREFIX."usergroups WHERE gid = '$gid'");
		while ($groups_result2 = $db->fetch_array($groups2)) {
			$usergroup2 = $groups_result2['namestyle'];
			$usergroup3 = str_replace("{username}", $groups_result2['title'], $usergroup2);
		}
	$prefix_output = "The available prefixes are as followed (Title - Usergroups - Forum ID): <br />
			$format - $usergroup3 - $fid";
}

Print this item