Hi there, I'm a total newbie to FCKeditor
I was wondering if someone could help me. I'm running FCKeditor on a PHP page, and the editor window is displayed, the dropdowns (styles, format, font, size) are populated, and the buttons works.
But none of the toolbar images and icons on the buttons appear in the editor toolbar. I've tried this in Firefox 2, IE6 and IE7, but they don't display on any browser.
I've set it up this way in my index.php file:
---------------------------------------------------
My directory structure is this:
- Web root directory
-- CMS (which contains the index.php file, which calls the fckeditor)
--- fckeditor
---------------------------------------------------
I thought maybe my BasePath was incorrect, but it probably wouldn't display the editor window if it wasn't set properly.
The html sample pages work properly on my own computer, but none of the toolbar images appear in the sample pages when I upload the whole fckeditor directory to the web server and try it from there.
Please can anyone help me figure out why the toolbar images aren't displaying?
I was wondering if someone could help me. I'm running FCKeditor on a PHP page, and the editor window is displayed, the dropdowns (styles, format, font, size) are populated, and the buttons works.
But none of the toolbar images and icons on the buttons appear in the editor toolbar. I've tried this in Firefox 2, IE6 and IE7, but they don't display on any browser.
I've set it up this way in my index.php file:
<?php include("fckeditor/fckeditor.php") ; ?>
<html>
<head></head>
<body>
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = 'fckeditor/';
$oFCKeditor->Value = 'Default text in editor';
$oFCKeditor->Create() ;
?>
</body>
</html>---------------------------------------------------
My directory structure is this:
- Web root directory
-- CMS (which contains the index.php file, which calls the fckeditor)
--- fckeditor
---------------------------------------------------
I thought maybe my BasePath was incorrect, but it probably wouldn't display the editor window if it wasn't set properly.
The html sample pages work properly on my own computer, but none of the toolbar images appear in the sample pages when I upload the whole fckeditor directory to the web server and try it from there.
Please can anyone help me figure out why the toolbar images aren't displaying?

Re: Newbie question: Toolbar images/icons not displaying
Re: Newbie question: Toolbar images/icons not displaying