版本信息如下:
XAMPP Linux 1.4.9a 34 MB Apache 2.0.52, MySQL 4.0.21, PHP 5.0.2 & 4.3.9 & PEAR + SQLite 2.8.9 + multibyte (mbstring) support, Perl 5.8.4, ProFTPD 1.2.10, phpMyAdmin 2.6.0-pl1, OpenSSL 0.9.7d, GD 2.0.1, Freetype2 2.1.7, libjpeg 6b, libpng 1.2.7, gdbm 1.8.0, zlib 1.1.4, expat 1.2, Sablotron 1.0, libxml 2.4.26, Ming 0.2a, Webalizer 2.01, pdf class 009e, ncurses 5.8, mod_perl 1.99_13, FreeTDS 0.62.4, gettext 0.11.5, IMAP C-Client 2002b, OpenLDAP (client) 2.2.13, mcrypt 2.5.7, mhash 0.8.18, Turck MMCache 2.4.6, cURL 7.10.7, libxslt 1.1.8, phpSQLiteAdmin 0.2 其中GD 2.0.1,这个版本够吗?

解决方案 »

  1.   

    没有人知道怎么办吗?我上传到另一个服务器上面也是这样,点击“浏览服务器”后电脑运行很长时间,最后还是没有反应,用的是ie6.0。这几天弄fckeditor弄得快要疯了。是不是这个太难弄了?而且也就是这个问题解决不了。另外加入笑脸之后也显示不出图片。图片地址变成了 :http://ie.tju.edu.cn/"/cailiao/FCKeditor/editor/images/smiley/msn/regular_smile.gif/"
    我想这是两个相通的问题吧?我主要是需要加强在新闻中加入图片的功能。如果fckeditor弄不好还有什么好的方法或工具吗?
      

  2.   

    哦 点没反应吗?
    fckeditor\editor\dialog\fck_image\fck_image.js
    这个文件里的这个方法用来打开上传图片的框架。function OpenServerBrowser( type, url, width, height )
    {
    sActualBrowser = type ; var iLeft = (screen.width  - width) / 2 ;
    var iTop  = (screen.height - height) / 2 ; var sOptions = "toolbar=no,menubar=no,status=no,location=yes,resizable=yes,dependent=yes" ;
    //alert(window.parent.location);
    sOptions += ",width=" + width ;
    sOptions += ",height=" + height ;
    sOptions += ",left=" + iLeft ;
    sOptions += ",top=" + iTop ; var oWindow = window.open( url, "FCKBrowseWindow", sOptions ) ;
    }
      

  3.   

    在线编辑器FCKeditor在PHP中的使用方法(多图) 
    http://www.shaof.com/sources/article_info.php?id=23
    在线编辑器FCKeditor 2.0试用小记(多图)
    http://www.shaof.com/sources/article_info.php?id=25
      

  4.   

    将fckconfig.js有些关于asp的注释掉
    // Link Browsing
    FCKConfig.LinkBrowser = true ;
    //FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/asp/connector.asp" ;
    //FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/asp/connector.asp&ServerPath=/CustomFiles/" ;
    //FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/aspx/connector.aspx" ;
    FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/php/connector.php" ;
    FCKConfig.LinkBrowserWindowWidth = screen.width * 0.7 ; // 70%
    FCKConfig.LinkBrowserWindowHeight = screen.height * 0.7 ; // 70%
    // Image Browsing
    FCKConfig.ImageBrowser = true ;
    //FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/asp/connector.asp" ;
    //FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/aspx/connector.aspx" ;
    FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/php/connector.php" ;
    FCKConfig.ImageBrowserWindowWidth  = screen.width * 0.7 ; // 70% ;
    FCKConfig.ImageBrowserWindowHeight = screen.height * 0.7 ; // 70% ;
      

  5.   

    我的3.0 rc2 的配置文件/*
     * FCKeditor - The text editor for internet
     * Copyright (C) 2003-2004 Frederico Caldeira Knabben
     * 
     * Licensed under the terms of the GNU Lesser General Public License:
     *  http://www.opensource.org/licenses/lgpl-license.php
     * 
     * For further information visit:
     *  http://www.fckeditor.net/
     * 
     * File Name: fckconfig.js
     *  Editor configuration settings.
     * 
     * Version:  2.0 RC2
     * Modified: 2004-12-17 08:14:33
     * 
     * File Authors:
     *  Frederico Caldeira Knabben ([email protected])
     */// Custom Configurations (leave blank to ignore)
    FCKConfig.CustomConfigurationsPath = '' ;// Style File to be used in the editable area.
    FCKConfig.EditorAreaCSS = FCKConfig.BasePath + 'css/fck_editorarea.css' ;// Enables the debug window
    FCKConfig.Debug = false ;// Set the path for the skin files to use.
    FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/default/' ;FCKConfig.PluginsPath = FCKConfig.BasePath + 'plugins/' ;// Language settings
    FCKConfig.AutoDetectLanguage = true ;
    FCKConfig.DefaultLanguage    = 'en' ;// Enable XHTML support
    FCKConfig.EnableXHTML = true ;
    FCKConfig.EnableSourceXHTML = true ;// Tells Gecko browsers to use SPAN instead of <B>, <I> and <U>.
    FCKConfig.GeckoUseSPAN = true ;// Force the editor to get the focus on startup (page load).
    FCKConfig.StartupFocus = true ;// Cut and Paste options
    FCKConfig.ForcePasteAsPlainText = false ;FCKConfig.ForceSimpleAmpersand = false ;FCKConfig.TabSpaces = 0 ;// When the user presses <ENTER> inserts a <BR> tag instead of a <P> (on IE).
    FCKConfig.UseBROnCarriageReturn = false ;// Link: Target Windows
    FCKConfig.LinkShowTargets = true ;
    FCKConfig.LinkTargets = '_blank;_parent;_self;_top' ;
    FCKConfig.LinkDefaultTarget = '' ;FCKConfig.ToolbarStartExpanded = true ;
    FCKConfig.ToolbarCanCollapse = true ;//##
    //## Toolbar Buttons Sets
    //##
    FCKConfig.ToolbarSets["Default"] = [
    ['Source','-','Save','NewPage','Preview'],
    ['Cut','Copy','Paste','PasteText','PasteWord','-','Print'],
    ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
    ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],
    ['OrderedList','UnorderedList','-','Outdent','Indent'],
    ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
    ['Link','Unlink'],
    ['Image','Table','Rule','SpecialChar','Smiley'],
    ['Style','FontFormat','FontName','FontSize'],
    ['TextColor','BGColor'],
    ['About']
    ] ;
    FCKConfig.ToolbarSets["Basic"] = [
    ['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About']
    ] ;// Font Colors
    FCKConfig.FontColors = '000000,993300,333300,003300,003366,000080,333399,333333,800000,FF6600,808000,808080,008080,0000FF,666699,808080,FF0000,FF9900,99CC00,339966,33CCCC,3366FF,800080,999999,FF00FF,FFCC00,FFFF00,00FF00,00FFFF,00CCFF,993366,C0C0C0,FF99CC,FFCC99,FFFF99,CCFFCC,CCFFFF,99CCFF,CC99FF,FFFFFF' ;// Font Combos
    FCKConfig.FontNames = 'Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana' ;
    FCKConfig.FontSizes = '1/xx-small;2/x-small;3/small;4/medium;5/large;6/x-large;7/xx-large' ;
    FCKConfig.FontFormats = 'p;div;pre;address;h1;h2;h3;h4;h5;h6' ;FCKConfig.StylesXmlPath = '../fckstyles.xml' ;// Link Browsing
    FCKConfig.LinkBrowser = true ;
    //FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/asp/connector.asp" ;
    //FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/asp/connector.asp&ServerPath=/CustomFiles/" ;
    //FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/aspx/connector.aspx" ;
    FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/php/connector.php" ;
    FCKConfig.LinkBrowserWindowWidth = screen.width * 0.7 ; // 70%
    FCKConfig.LinkBrowserWindowHeight = screen.height * 0.7 ; // 70%// Link Upload
    FCKConfig.LinkUpload = false ;
    FCKConfig.LinkUploadURL = FCKConfig.BasePath + "filemanager/upload/aspx/upload.aspx" ;
    FCKConfig.LinkUploadWindowWidth = 300 ;
    FCKConfig.LinkUploadWindowHeight = 150 ;
    FCKConfig.LinkUploadAllowedExtensions = "*" ; // * or empty for all
    FCKConfig.LinkUploadDeniedExtensions = ".exe .asp .php .aspx .js .cfm .dll" ; // empty for none// Image Browsing
    FCKConfig.ImageBrowser = true ;
    //FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/asp/connector.asp" ;
    //FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/aspx/connector.aspx" ;
    FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/php/connector.php" ;
    FCKConfig.ImageBrowserWindowWidth  = screen.width * 0.7 ; // 70% ;
    FCKConfig.ImageBrowserWindowHeight = screen.height * 0.7 ; // 70% ;// Smiley Dialog
    FCKConfig.SmileyPath = FCKConfig.BasePath + "images/smiley/msn/" ;
    FCKConfig.SmileyImages = ["regular_smile.gif","sad_smile.gif","wink_smile.gif","teeth_smile.gif","confused_smile.gif","tounge_smile.gif","embaressed_smile.gif","omg_smile.gif","whatchutalkingabout_smile.gif","angry_smile.gif","angel_smile.gif","shades_smile.gif","devil_smile.gif","cry_smile.gif","lightbulb.gif","thumbs_down.gif","thumbs_up.gif","heart.gif","broken_heart.gif","kiss.gif","envelope.gif"] ;
    FCKConfig.SmileyColumns = 8 ;
    FCKConfig.SmileyWindowWidth = 320 ;
    FCKConfig.SmileyWindowHeight = 240 ;
      

  6.   

    哪位高人帮助解决一下:
    http://community.csdn.net/Expert/topic/4148/4148028.xml?temp=.5468103
      

  7.   

    点击“浏览服务器”没有任何反应到我给你的函数里加个alert
    然后递次追上去
      

  8.   

    ccxxcc(cc小超) :我就是按照您说的那几个做的。可是也是没有反应。郁闷。
    e_(凯撒):我在fck_image.js里面直接加上这么一段:
    url = "e:\xampp\htdocs\cailiao\FCKeditor\editor\filemanager/browser/default/browser.html?Type=Image&Connector=connectors/php/connector.php"
    还是没有反应。是不是服务器的问题呢?可是传到别的服务器上也是一样,再次郁闷。ccxxcc(cc小超) :可不可以给我传一下您的完整的FCKeditor相关的文件给我(加一个例子),因为现在要的挺急,回头再好好研究研究,也测试一下是不是服务器的问题。我用的是xampp 1.4.9版本。
    email:[email protected] 谢谢!
      

  9.   

    在浏览器里面直接输入:
    e:\xampp\htdocs\cailiao\FCKeditor\editor\filemanager/browser/default/browser.html?Type=Image&Connector=connectors/php/connector.php
    就可以看到那个界面了。
      

  10.   

    给你发了一份
    我是在iis根目录下配的
      

  11.   

    e:\xampp\htdocs\cailiao\FCKeditor\editor\filemanager/browser/default/browser.html?Type=Image&Connector=connectors/php/connector.php"这是?应该
    http://xxxx/xxx/xxx/browser.html?Type=Image.........不过我推测你的点击没反应应该是弹出对话框的函数出错了。去dialog目录下找那个xxxdialog.html,浏览服务器的按钮从这里开始找。
      

  12.   

    呵呵,我也和你一样,搞的头多大了,后来用filefox浏览居然能浏览服务器,不知道什么原因,等你解决后记得和我说一下啊,谢了,我用的是2.2的