Welcome, Guest. Please login or register.
Did you miss your activation email?
May 26, 2012, 01:00:34 AM

Login with username, password and session length
Search:     Advanced search
Wollen Sie dem WebsiteBaker Team beitreten?
Nähere Informationen finden Sie unter hier und auf unserer neuen Webseite.
155533 Posts in 21713 Topics by 7738 Members
Latest Member: Pattieardathfe
* Home Help Search Login Register
Pages: 1 [2]   Go Down
Print
Author Topic: FCKeditor - Connectors Tests  (Read 6511 times)
Don

Offline Offline

Posts: 70


« Reply #25 on: October 17, 2009, 05:37:50 PM »

Yes John, except I cannot browse files.   cry

Don
Logged
Luisehahne
Board Member
Development Team
*****
Offline Offline

Posts: 3147



WWW
« Reply #26 on: October 17, 2009, 06:18:06 PM »

Can you give me acess to the backend? Oris it a local installation? I want to have a look,  Pls send me a pm

Dietmar
Logged

We are human beings - and nobody is perfect at all.
Don

Offline Offline

Posts: 70


« Reply #27 on: October 17, 2009, 10:19:54 PM »

I did a complete reinstall of version 2.8 in an effort to resolve this problem.  Everything works except file browsing in the default FCK.

This time I set my PHP error reporting level to E_ALL.

I don't know if this has anything to do with the problem, but now when I browse my media folder from the backend I get this error code:

Notice: Undefined index: extension in /home/don/public_html/admin/media/browse.php on line 66
Notice: Undefined index: extension in /home/don/public_html/admin/media/browse.php on line 59


The code around these lines is:
Code:
// Get file extension
function get_filetype($fname) {
    $pathinfo = pathinfo($fname);
    $extension = strtolower($pathinfo['extension']);
    return $extension;
}

// Get file extension for icons
function get_filetype_icon($fname) {
    $pathinfo = pathinfo($fname);
    $extension = strtolower($pathinfo['extension']);
    if (file_exists(THEME_PATH.'/images/files/'.$extension.'.png')) {
        return $extension;
    } else {
        return 'unknown';
    }

Does this help?

//edit  I turned off error log as I found I had many errors on pages, and I kept the install to default settings
« Last Edit: October 17, 2009, 10:39:06 PM by Don » Logged
Luisehahne
Board Member
Development Team
*****
Offline Offline

Posts: 3147



WWW
« Reply #28 on: October 17, 2009, 11:57:30 PM »

The media browser has nothing to do with fckeditor. fck has is own filemanager.

Dietmar
Logged

We are human beings - and nobody is perfect at all.
Luisehahne
Board Member
Development Team
*****
Offline Offline

Posts: 3147



WWW
« Reply #29 on: October 18, 2009, 12:01:35 AM »

Quote
Notice: Undefined index: extension in /home/don/public_html/admin/media/browse.php on line 66

May be that you have fiiles in media folder without extensions?

Dietmar
Logged

We are human beings - and nobody is perfect at all.
Don

Offline Offline

Posts: 70


« Reply #30 on: October 18, 2009, 04:47:26 AM »

They look OK Dietmar.  I have disabled the E_ALL log, there were so many, it was picking up everything.  It's set to system default now.  I was just grasping at straws I guess.

Don
Logged
Luisehahne
Board Member
Development Team
*****
Offline Offline

Posts: 3147



WWW
« Reply #31 on: October 18, 2009, 09:12:27 AM »

there was one file without extions. i renamed it and now no error warning

Dietmar
Logged

We are human beings - and nobody is perfect at all.
pcwacht
AddOn Development
*
Offline Offline

Posts: 2859



WWW
« Reply #32 on: October 19, 2009, 12:26:27 PM »

somewhere else my eye fell on this:
http://www.websitebaker2.org/forum/index.php/topic,15616.msg101409.html#msg101409

As I do understand the filebrowsers need full write access in the media dir

Have fun
John
Logged

http://www.ictwacht.nl = Dutch ICT info
http://www.pcwacht.nl = My first
both still work in progress, since years.....
Luisehahne
Board Member
Development Team
*****
Offline Offline

Posts: 3147



WWW
« Reply #33 on: October 19, 2009, 12:49:45 PM »

My permission mode is 755 and i have no problems

Dietmar
Logged

We are human beings - and nobody is perfect at all.
gilly

Offline Offline

Posts: 49


« Reply #34 on: November 24, 2009, 04:34:28 AM »

has anyone solved this problem yet? I've tried just about everything and cant get it to work.
Logged
Don

Offline Offline

Posts: 70


« Reply #35 on: November 27, 2009, 06:23:50 AM »

Not as far as I know gilly.  I use an earlier version of FCK which does work.  In the meantime I am waiting for CKEditor 3.0.1, which I think Dietmar is working on.
Logged
Luisehahne
Board Member
Development Team
*****
Offline Offline

Posts: 3147



WWW
« Reply #36 on: November 27, 2009, 12:43:29 PM »

Ckeditor stoped in moment, because the docu is very light to convert ckeditor into WB. If somebody is able to help can send me a PM.

Issies with FCKeditor often are the settings on Webserver, open_basedir, etc. I know that older Version are working, but have security rics. So the authors changed the code inb newer versions and now much user have trouble with the changed code.

Dietmar
Logged

We are human beings - and nobody is perfect at all.
gilly

Offline Offline

Posts: 49


« Reply #37 on: November 30, 2009, 02:31:03 AM »

we were able to fix our issue by doing the following:
1. Make sure permissions are all set correctly (some of them should be 755, some should be 644).
2. This file needs some edits done:
    /public_html/modules/fckeditor/fckeditor/editor/filemanager/connectors/php/config.php
        ($Config['Enabled'] = true ; (line 45) - and there was one other change but I cant remember what it was.

I have done over 100 installs of WB, and this was the only one that had this trouble. It was due to this particular server being configured differently to the other 99 that we have done.
Logged
Luisehahne
Board Member
Development Team
*****
Offline Offline

Posts: 3147



WWW
« Reply #38 on: November 30, 2009, 03:03:57 AM »

Quote
$Config['Enabled'] = true

This will be set by WB permission control. Normally no needed to set it to true.

Most of the Code in this version 2.6.5 were changed vs Version 2.6.3 by the author of FCKeditor. We know the issues in some hosting configuration, but i'm really shame, that i don't know to solve it with FCKeditor. By most of hosting there will be no issues.

I'm waiting for the completly documantion of ckeditor and hope this editor will be going run better on all hostings.

Dietmar
Logged

We are human beings - and nobody is perfect at all.
Luisehahne
Board Member
Development Team
*****
Offline Offline

Posts: 3147



WWW
« Reply #39 on: December 03, 2009, 07:17:02 PM »

Quote
it gives me a headache

Oh yes i love all the issues  evil No don't believe it. Hmm in moment i have problems to help Hmmm

Dietmar
Logged

We are human beings - and nobody is perfect at all.
Pages: 1 [2]   Go Up
Print
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!