XML error (FCKeditor 2.0 @ dev 1.2.1)
XML error (FCKeditor 2.0 @ dev 1.2.1)
When i try to use FILEMANAGER (upload image) in FCKeditor i got this error massage after clicking on BROWSE SERVER button:
[JavaScript Application]
XML request error: Not Found (404)
Any solution?
[JavaScript Application]
XML request error: Not Found (404)
Any solution?
screem of the butterfly
As I remember, is this a general problem of the FCKeditor (for more look at the forum of FCKeditor)
I try to use the filemanager in the standalone (demo) version, but also didn't work...
Better use Text with image...
I try to use the filemanager in the standalone (demo) version, but also didn't work...
Better use Text with image...
Gruss
cyaneo
Zen Cart - The Art of e-Commerce
Wenn jeder dem anderen helfen wollte, wäre allen geholfen.
-------------------------------------------
Ein Problem ist halb gelöst, wenn es klar formuliert ist.
cyaneo
Zen Cart - The Art of e-Commerce
Wenn jeder dem anderen helfen wollte, wäre allen geholfen.
-------------------------------------------
Ein Problem ist halb gelöst, wenn es klar formuliert ist.
i solved this problem but only for IE 6.0 not in FIREFOX!!
in "fckconfig.js" under "Image Browsing" you have to comment second line (./asp/connector.asp) and uncoment fourth line (../php/connector.php)
here is the code:
in "fckconfig.js" under "Image Browsing" you have to comment second line (./asp/connector.asp) and uncoment fourth line (../php/connector.php)
here is the code:
Code: Select all
// 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% ;
screem of the butterfly
I have uploded the new FCKeditor RC2 from Original Website except the Two Files fckconfic.js and fckeditor.php and it works for me in IE and FF
The Path to the Imagefolder is in include/inc_ext/FCKeditor2/editor/filemanager/browserdefault/connectors/php/connector.php
-- picture is my Path
The Path to the Imagefolder is in include/inc_ext/FCKeditor2/editor/filemanager/browserdefault/connectors/php/connector.php
Code: Select all
else
$GLOBALS["UserFilesPath"] = '/picture/' ;
- Oliver Georgi
- Site Admin
- Posts: 9907
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
Hi
sorry OG I know it's OT
maybe someone can move this Thread to Discussion if necercy
I make most Articles with WYSIWYG-Editor, so I use the FCK build in Filemanager for Pictures and Files - I actually don't need a Right and Usermanagement for these Files - and I can find and handle the Files by their original Filename with FTPBy the way, I find it strange that there is only one way for a novice user/client to implement pictures in an article.
sorry OG I know it's OT
maybe someone can move this Thread to Discussion if necercy
Yeah, it is no problem with me either...When I get the fck filemanager going..I never used the phpwcms filemanager either just because it doesn't work with the wysiwyg.
I am just always thinking of my client, which have no clue of ftp and code and such...Therefore is the phpwcms really nice and easy to use..But it would be great to have it working with the fck...
I am just always thinking of my client, which have no clue of ftp and code and such...Therefore is the phpwcms really nice and easy to use..But it would be great to have it working with the fck...
When I get the fck filemanager going..
it's running for me - just read at the beginning of this Thread and after I get the CSS-Editor plug-in to run it's realy comfortable
http://www.phpwcms.de/forum/viewtopic.php?t=5916
just read from the beginning of this Thread
notify the Posting from jimb00 an me - a complete fckconfig.js you can see at
http://www.phpwcms.de/forum/viewtopic.php?t=5916 in my posting
Hi
root - picture - image (and here are the Images are stored from FCK )
root - picture - File ( for other Files )
it's defined in
include/inc_ext/FCKeditor2/editor/filemanager/browserdefault/connectors/php/cofig.php
my structure of the Server isThe Path to the Imagefolder is in include/inc_ext/FCKeditor2/editor/filemanager/browserdefault/connectors/php/connector.php
Code:
else
$GLOBALS["UserFilesPath"] = '/picture/' ;
-- picture is my Path
root - picture - image (and here are the Images are stored from FCK )
root - picture - File ( for other Files )
it's defined in
include/inc_ext/FCKeditor2/editor/filemanager/browserdefault/connectors/php/cofig.php
Code: Select all
$Config['UserFilesPath'] = '/picture/' ;
$Config['AllowedExtensions']['File'] = array() ;
$Config['DeniedExtensions']['File'] = array('php','asp','aspx','ascx','jsp','cfm','cfc','pl','bat','exe','dll','reg','pdf') ;
$Config['AllowedExtensions']['Image'] = array('jpg','gif','jpeg','png') ;
$Config['DeniedExtensions']['Image'] = array() ;
$Config['AllowedExtensions']['Flash'] = array('swf','fla') ;
$Config['DeniedExtensions']['Flash'] = array() ;
$Config['AllowedExtensions']['Media'] = array('swf','fla','jpg','gif','jpeg','png','avi','mpg','mpeg') ;
$Config['DeniedExtensions']['Media'] = array() ;
Hi Gnolen,Gnolen wrote:Strange, won't work for me...
maybe it helps - all path is from your document_root !
e.g. if your installation of phpwcms is in a subfolder "cms" under your document root - you have to fill in the path in the config.php with /cms/picture/
I got it running with help of the other informations on this thread
After i did this - it works for me !