CodeIgniter Forums
Problem with FCKeditor implementation - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Problem with FCKeditor implementation (/showthread.php?tid=1747)



Problem with FCKeditor implementation - El Forum - 06-24-2007

[eluser]PoWah[/eluser]
I've done everything following http://codeigniter.com/wiki/FCKeditor/ page and I get an error: The URI you submitted has disallowed characters. when I try to load fckeditor in browser

Any ideas? :/


Problem with FCKeditor implementation - El Forum - 06-24-2007

[eluser]PoWah[/eluser]
Problem solved..
I added base_url(). to the line
Code:
$this->fckeditor->BasePath = base_url().'sisteminiai_failai/plugins/fckeditor/';
in view file and everything is Ok.
Sorry for consuming your time ;-)


Problem with FCKeditor implementation - El Forum - 06-25-2007

[eluser]Dr.Dan[/eluser]
Actually, I am having different problem with FCKeditor. I am getting the following error:

Code:
404 Page Not Found

The page you requested was not found.

If I change :
Code:
$this->fckeditor->BasePath = 'system/plugins/FCKeditor/';
//to
$this->fckeditor->BasePath = base_url() . '/plugins/fckeditor/';

Then I am getting the following error:
Code:
Object not found!

The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.

If you think this is a server error, please contact the webmaster.
Error 404

What's wrong? Where should I look at?


Problem with FCKeditor implementation - El Forum - 06-29-2007

[eluser]Dr.Dan[/eluser]
Ok,

when I write
Code:
$this->fckeditor->BasePath = base_url().'system/plugins/FCKeditor/';

instead of
Code:
$this->fckeditor->BasePath = 'system/plugins/FCKeditor/';

Then it is working. But I think this should be mentioned in the wiki.


Problem with FCKeditor implementation - El Forum - 07-21-2007

[eluser]Unknown[/eluser]
hi all,
am using FCKeditor i followed the steps in wiki it works on localhost but when i upload it it gave me this msg:



A PHP Error was encountered

Severity: Warning

Message: Invalid argument supplied for foreach()

Filename: libraries/Fckeditor.php

Line Number: 132


Not Found

The requested URL /system/index.php/plugins/FCKeditor/editor/fckeditor.html was not found on this server.

and am using .htaccess to remove index.php but its still here :S


thnx all


Problem with FCKeditor implementation - El Forum - 07-21-2007

[eluser]esra[/eluser]
Generally, you might consider using Mozilla FireFox with the Firebug extension. It will help isolate problems caused by incorrect paths, missing files, css and js file naming problems and much more.