YAFLogo

Posted by: smaaza - Friday, 27 February 2009 12:30:01
[color=blue][size=7]Hello everybody Could u please help me I could not setup Tinymce compressor v3.1.1 proberly for Yaf forum i followed the instruction in thier site(Tinymce Site) and i moved the .dll files to my Bin folder in yaf and files of the editor in editors folder but when i select the editor from admin --->editors--->Tinymce i got this[/size][/color] [img]http://www8.0zz0.com/2009/02/27/09/454403155.jpg[/img] [color=blue][size=7]Here is the files i'am dialing with[/size][/color] [img]http://www8.0zz0.com/2009/02/27/09/982120282.jpg[/img] tiny_mce.js: [code] 02. 35. 36.
37. 39.
[/code] tiny_mce_gzip.aspx: [code]<%@ Page Language="C#" %> <%@ Import Namespace="System.IO" %> <%@ Import Namespace="System.Security.Cryptography" %> <%@ Import Namespace="System.Text.RegularExpressions" %> <%@ Import Namespace="ICSharpCode.SharpZipLib.GZip" %> <% /** * $Id: tiny_mce_gzip.aspx 316 2007-10-25 14:50:55Z spocke $ * * @author Moxiecode * @copyright Copyright © 2006, Moxiecode Systems AB, All rights reserved. * * This file compresses the TinyMCE JavaScript using GZip and * enables the browser to do two requests instead of one for each .js file. * * It's a good idea to use the diskcache option since it reduces the servers workload. */ string cacheKey = "", cacheFile = "", content = "", enc, suffix, cachePath; string[] plugins, languages, themes; bool diskCache, supportsGzip, isJS, compress, core; int i, x, bytes, expiresOffset; GZipOutputStream gzipStream; Encoding encoding = Encoding.GetEncoding("windows-1252"); byte[] buff; // Get input plugins = GetParam("plugins", "").Split(','); languages = GetParam("languages", "").Split(','); themes = GetParam("themes", "").Split(','); diskCache = GetParam("diskcache", "") == "true"; isJS = GetParam("js", "") == "true"; compress = GetParam("compress", "true") == "true"; core = GetParam("core", "true") == "true"; suffix = GetParam("suffix", "") == "_src" ? "_src" : ""; cachePath = Server.MapPath("."); // Cache path, this is where the .gz files will be stored expiresOffset = 10; // Cache for 10 days in browser cache // Custom extra javascripts to pack string[] custom = {/* "some custom .js file", "some custom .js file" */}; // Set response headers Response.ContentType = "text/javascript"; Response.Charset = "UTF-8"; Response.Buffer = false; // Setup cache Response.Cache.SetExpires(DateTime.Now.AddDays(expiresOffset)); Response.Cache.SetCacheability(HttpCacheability.Public); Response.Cache.SetValidUntilExpires(false); // Vary by all parameters and some headers Response.Cache.VaryByHeaders["Accept-Encoding"] = true; Response.Cache.VaryByParams["theme"] = true; Response.Cache.VaryByParams["language"] = true; Response.Cache.VaryByParams["plugins"] = true; Response.Cache.VaryByParams["lang"] = true; Response.Cache.VaryByParams["index"] = true; // Is called directly then auto init with default settings if (!isJS) { Response.WriteFile(Server.MapPath("tiny_mce_gzip.js")); Response.Write("tinyMCE_GZ.init({});"); return; } // Setup cache info if (diskCache) { cacheKey = GetParam("plugins", "") + GetParam("languages", "") + GetParam("themes", ""); for (i=0; i[/code] [color=blue][size=7]So anybody please could help me to setup Tinymce v3.1.1 or explaine the right steps for setup . Thanks for all[/size][/color]

Posted by: logan - Friday, 27 February 2009 13:14:50
copy and save as tiny_mce_init.js - put in your editors/tiny_mce folder with the other .js files [code]tinyMCE.init({ // General options mode : "textareas", theme : "advanced", plugins : "safari,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager", // Theme options theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect", theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor", theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen", theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", theme_advanced_statusbar_location : "bottom", theme_advanced_resizing : true, // Example content CSS (should be your site CSS) content_css : "css/example.css", // Drop lists for link/image/media/template dialogs template_external_list_url : "js/template_list.js", external_link_list_url : "js/link_list.js", external_image_list_url : "js/image_list.js", media_external_list_url : "js/media_list.js", // Replace values for the template plugin template_replace_values : { username : "Some User", staffid : "991234" } }); [/code]

Posted by: smaaza - Saturday, 28 February 2009 19:34:02
[quote=logan] copy and save as tiny_mce_init.js - put in your editors/tiny_mce folder with the other .js files [code]tinyMCE.init({ // General options mode : "textareas", theme : "advanced", plugins : "safari,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager", // Theme options theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect", theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor", theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen", theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", theme_advanced_statusbar_location : "bottom", theme_advanced_resizing : true, // Example content CSS (should be your site CSS) content_css : "css/example.css", // Drop lists for link/image/media/template dialogs template_external_list_url : "js/template_list.js", external_link_list_url : "js/link_list.js", external_image_list_url : "js/image_list.js", media_external_list_url : "js/media_list.js", // Replace values for the template plugin template_replace_values : { username : "Some User", staffid : "991234" } }); [/code][/quote] [b] Hello Mr Logan first of all Thanku for help [b][size=7]I did what u said but it didn't work may be there are somthing wrong i'am waiting ur response thanks again[/size][/b][/b]

Posted by: logan - Saturday, 28 February 2009 22:48:02
Smaaza, move the tiny_mce folder out of the jscripts folder into the editors folder.

Posted by: smaaza - Sunday, 1 March 2009 07:39:55
[quote=logan]Smaaza, move the tiny_mce folder out of the jscripts folder into the editors folder. [/quote] [color=blue][b][size=7]Sorry it doesn't work[/size][/b][/color]