
31/03/2010, 06:31
|
| | Fecha de Ingreso: marzo-2010
Mensajes: 8
Antigüedad: 15 años Puntos: 0 | |
Respuesta: No aparece botón de Ver servidor Ya esta solucionado el tema, si se prueba a hacer una página HTML con
el siguiente código aparece el botón, es IMPORTANTE incluir la función
window.onload:
Habría que sustituir las url's donde se encuentre los "js".
<html>
<head>
<script type="text/javascript" src="http://6701.huchacard.es/TC_MarcaBlanca_CMS/jscripts/ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="http://6701.huchacard.es/TC_MarcaBlanca_CMS/jscripts/ckfinder/ckfinder.js"></script>
<script type="text/javascript" src="http://6701.huchacard.es/TC_MarcaBlanca_CMS/jscripts/util.js"></script>
</head>
<body>
<form>
<textarea name="editor" cols="60" rows="5"></textarea>
</form>
<script type="text/javascript">
window.onload = function()
{
editor = CKEDITOR.replace('editor');
CKFinder.SetupCKEditor( editor, '/ckfinder/' );
}
</script>
</body>
</html> |