GetSimple Support Forum

Full Version: CKEditor failure (Standard)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

i´ve use the CKEditor which are standard inside the CMS.

Only i modify that i have more options like this:

Code:
# WYSIWYG toolbars (advanced, basic or [custom config])
define('GSEDITORTOOL',"
['Cut','Copy','Paste','PasteFromWord','-','Undo','Redo','Find','Replace','-','SelectAll'],
['Bold', 'Italic', 'Underline', 'NumberedList', 'BulletedList',  'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock', 'Table', 'TextColor', 'BGColor', 'Link', 'Unlink', 'Image', 'RemoveFormat', 'Source'],
'/',
['Styles','Format','Font','FontSize']
");

but if i now add a picture inside my content page i´ve got a big red "X"
so the first selected picture which are located at /uploads/ are not shown
inside my content.

Why that somebody has the same failure ?

Hope somebody can help me.

best regards,

PHPman
What version of gs ?

What is the exact problem, I do not see what ckeditor information has to do with you having broken images in your content. That would imply that your site path or htacess rewrites are wrong. Assuming that is what big red x means, its very vague.
the red X means that the picture does not exist or that the picture is not readable

check the HTML which CKEditor creates and tell us the output, please
Hi,

i use last version 3.2.1

Code:
<p>
    <img alt="" src="http://servername.com/geta/data/uploads/bild-149.jpg" style="width: 200px; height: 200px; float: right;" /></p>

Now i see that if i like to accesss the picture i get error message "error 500"

That i can´t access the file.

What i must change inside the .htaccess file ?

I´m wondering about this than if i use I18N gallery i can show the same pictures inside the gallery.

Somebody can help?
You should have
Code:
Allow from all
in your uploads htaccess.
i´ve use the default .htaccess

Code:
Options -Indexes
Allow from all

if i remove this tag

Code:
#Options -Indexes

it works.....
Your host might be doing some kind of security blocking it because of that.
yes i know now i have to disable the same option inside the .htaccess file in the root path after installation
before it dosn´t work! Same error result.
I wonder if there is a way to wrap it in an if allow overrides to prevent this fatal failure. You would think it would be graceful and not break it entirely.