MyBB Community Forums

Full Version: no folder "Greek" in images
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi ,

I just tried today to install my very first mybb forum.
Everythin seems ok with control panel etc , but i experienced the following problem.
When i set up my new forum ( in greek language ) after testin it i saw that some icons were not displayed ( ie "newthread.gif" + all the others ).
I checked the root folder and in mybb/images I couln not find any folder for Greek graphs.
Is there anythin downloadable for Greek gifs or am i doing something wrong?

A second question is if i can have html enabled in signatures for specific users only.

Thanks in advance
George
Thanks for your reply , however in this zip file the images are still in the english language , not in greek
2- Go to MyBBRoot/inc/functions_post.php
find:
		$sig_parser = array(
			"allow_html" => $mybb->settings['sightml'],
			"allow_mycode" => $mybb->settings['sigmycode'],
			"allow_smilies" => $mybb->settings['sigsmilies'],
			"allow_imgcode" => $mybb->settings['sigimgcode'],
			"me_username" => $post['username'],
			"filter_badwords" => 1
		);
Replace to:
		$sig_parser = array(
			"allow_html" => $mybb->settings['sightml'],
			"allow_mycode" => $mybb->settings['sigmycode'],
			"allow_smilies" => $mybb->settings['sigsmilies'],
			"allow_imgcode" => $mybb->settings['sigimgcode'],
			"me_username" => $post['username'],
			"filter_badwords" => 1
		);
		$allowhtmlgroups = '4,3';
		if (in_array($mybb->user['usergroup'],explode(',',$allowhtmlgroups)))
		{
			$sig_parser['allow_html'] = 1;
		}
(2013-06-12, 02:05 PM)My-BB.Ir Wrote: [ -> ]2- Go to MyBBRoot/inc/functions_post.php
find:
		$sig_parser = array(
			"allow_html" => $mybb->settings['sightml'],
			"allow_mycode" => $mybb->settings['sigmycode'],
			"allow_smilies" => $mybb->settings['sigsmilies'],
			"allow_imgcode" => $mybb->settings['sigimgcode'],
			"me_username" => $post['username'],
			"filter_badwords" => 1
		);
Replace to:
		$sig_parser = array(
			"allow_html" => $mybb->settings['sightml'],
			"allow_mycode" => $mybb->settings['sigmycode'],
			"allow_smilies" => $mybb->settings['sigsmilies'],
			"allow_imgcode" => $mybb->settings['sigimgcode'],
			"me_username" => $post['username'],
			"filter_badwords" => 1
		);
		$allowhtmlgroups = '4,3';
		if (in_array($mybb->user['usergroup'],explode(',',$allowhtmlgroups)))
		{
			$sig_parser['allow_html'] = 1;
		}

Thanks , as long as i put this code , what i do next in order to determine which user uses html in signature and which one does not? Is there a new option in control panel after putting the code?

As for the greek translation file that you gave me the download link , everythin is ok apart from the images. They are in the English language.


Thanks again