MyBB Community Forums

Full Version: NEW - WYSIWYG Rich Text Editor (Build-in BBCode Editor) for MyBB 1.2.3
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
Very, Very nice
eCardMAX.com Wrote:and then insert class=xxx to button Save & Cancel. This is a basic HTML CSS stuff.

Can u plz give the exact direction ..that where do i need to edit ?
Thanks to eCardMAX.com for this editor, but the links given in the posts have mistakes. E.g.
It's showing rapidshare like rapshare.com. What the problem is ? Confused
P.S. there is no other error with this script. It works well.
After installing WYSIWYG Rich Text Editor 1.4 we encounter a problem.When we upload a rapid link it redirects us to rapshare not rapidshare.What can be the problem?
Special thanks to eCardMAX.com ..
Hello!
Quote:After installing WYSIWYG Rich Text Editor 1.4 we encounter a problem.When we upload a rapid link it redirects us to rapshare not rapidshare.What can be the problem?

That is a bug. Below is how to fix

Attention to all users who are running this MOD, you must fix this bug right away

There are 2 ways to get the fix:

1- Visit my page http://www.ecardmax.com/index.php?step=Hoteditor2MyBB to re-download the MOD zip file and use the new file inc/function.php (bug found in this file)

2- Or read the instruction below to fix:

- Use Text editor to open file inc/function.php - go to line 2749 - FIND BLOCK CODE below

for ($i = 0; $i < $match_count; $i++){
	$get_code1 = $matches_code[1][$i];
	$get_code2 = $matches_code[1][$i];
	$get_code2 = preg_replace("/id/si", "", $get_code2);
	$get_code2 = preg_replace("/name/si", "", $get_code2);
	$get_code2 = preg_replace("/onclick/si", "", $get_code2); 
	$get_code2 = preg_replace("/onmouseover/si", "", $get_code2); 
	$get_code2 = preg_replace("/onmouseout/si", "", $get_code2); 
	$get_code2 = preg_replace("/onmousedown/si", "", $get_code2); 
	$get_code2 = preg_replace("/onmouseup/si", "", $get_code2); 
	$get_code2 = preg_replace("/onmousemove/si", "", $get_code2); 
	$get_code2 = preg_replace("/onblur/si", "", $get_code2); 
	$get_code2 = preg_replace("/ondblclick/si", "", $get_code2); 
	$get_code2 = preg_replace("/onload/si", "", $get_code2); 
	$get_code2 = preg_replace("/onsubmit/si", "", $get_code2); 
	$get_code2 = preg_replace("/onchange/si", "", $get_code2); 
	$get_code2 = preg_replace("/onfocus/si", "", $get_code2); 
	$get_code2 = preg_replace("/onselect/si", "", $get_code2); 
	$get_code2 = preg_replace("/onunload/si", "", $get_code2); 
	$get_code2 = preg_replace("/onkeypress/si", "", $get_code2); 
	$get_code2 = preg_replace("/cursor/si", "", $get_code2); 
	$get_code2 = preg_replace("/position/si", "", $get_code2); 
	$get_code2 = preg_replace("/absolute/si", "", $get_code2); 
	$get_code2 = preg_replace("/visibility/si", "", $get_code2); 
	$get_code2 = preg_replace("/visible/si", "", $get_code2); 
	$get_code2 = preg_replace("/z-index/si", "", $get_code2); 
	$get_code =str_replace($get_code1,$get_code2,$get_code);
}

REPLACE WITH

for ($i = 0; $i < $match_count; $i++){
	$get_code1 = $matches_code[1][$i];
	$get_code2 = $matches_code[1][$i];
	$get_code2 = preg_replace("/id=/si", "", $get_code2);
	$get_code2 = preg_replace("/name=/si", "", $get_code2);
	$get_code2 = preg_replace("/onclick=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onmouseover=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onmouseout=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onmousedown=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onmouseup=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onmousemove=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onblur=/si", "", $get_code2); 
	$get_code2 = preg_replace("/ondblclick=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onload=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onsubmit=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onchange=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onfocus=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onselect=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onunload=/si", "", $get_code2); 
	$get_code2 = preg_replace("/onkeypress=/si", "", $get_code2); 
	$get_code2 = preg_replace("/position:/si", "", $get_code2); 
	$get_code =str_replace($get_code1,$get_code2,$get_code);
}

- SAVE FILE - DONE.

Good luck
ive tried to remove this mod and changed all the files back to what they were but im getting this error - Fatal error: Call to undefined function: is_banned_ip() in /home/fhlinux183/t/tussaudtimes.co.uk/user/htdocs/forums/global.php on line 363

PLEASE HELP
we again have a problem. we cannot upload this.
http://dosyam.net/?id=2n2tnu
coz we changed codes as id=.... .How can we solve this problem.
After I installed this, the selection areas, and drop down box, in the user profile become a text field instead. Any ideas how to fix this?

~DarkChaos
Yes i am also facing the same problem...
eCardMAX.com, Is it possible to convert this to a plugin instead? It would make life much easier. Smile
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24