CK Editor和doksoft_uploader图片上传,基本配置

时间:2015-08-09 19:39:18

标签: php ckeditor

以下代码来自“配置”文件,该文件控制WYSIWYG CK编辑器中的doksoft_uploader插件。

参见代码:

    <?php

// Absolute URL to upload folder via HTTP.
// Will affect to client (JS) part of plugins.
// By default script is configured to automatically detect it.
// If you want to change it, do it like this:
// $config['BaseUrl'] = 'http://yoursite.com/ckeditor_or_tinymce/plugins/doksoft_uploader/';

$config['BaseUrl'] = 'http://havanarumbaonline.com/web/HAVRUM/assets';

// Absolute or relative path to directory on the server where uploaded files will be stored.
// Used by this PHP script only.
// By default it automatically detects the directory.
// You can change it, see this example:
// $config['BaseDir'] = "/var/www/ckeditor/doksoft_uploader/userfiles/";
// Orginal --> $config['BaseDir'] = dirname(__FILE__).'/userfiles/';

// Support Suggestion --> $config['BaseDir'] = dirname(__FILE__).'/'.$userid.'/assets/';
//$config['BaseDir'] = dirname(__FILE__).'/'.$userid.'userfiles/';

$config['BaseDir'] = '/home/content/28/6823828/html/havanarumba/web/HAVRUM/assets';

忽略上面的所有评论 - 但我确实想要将它们包括在内,因为它们来自开发人员,它可能会提供一些见解。当我使用上面的两个“$ config ['BaseUrl']”时 - 我收到错误。

单击CK Editor中的“添加图像”图标后,会出现一个对话框,用户选择一个图像,然后代码会将图像上传到正确的目录,然后在CK编辑器编辑区域显示图像。但是图像在编辑器中显示为缺失。当我查看源代码时,我得到:

代码假设为

注意:我已成功多次使用此代码,但此代码无效。提示可能是GoDaddy帐户。 GoDaddy说这些是配置:

IP地址 97.74.46.128

DNS(主域名) 预览管理

操作系统 LINUX

PHP版本 5

主机名 mojitotapas.com

绝对主机路径 /家庭/内容/6823828分之28/ HTML

托管配置 2.2

重要提示:此主机帐户已注册为mojitotapas.com,但域名havanarumbaonline.com也附加到子目录中的帐户。 GoDaddy允许您托管多个域,但每个域都进入他们自己的目录。

但是底线问题似乎指向IMO的这两行代码:

$config['BaseUrl'] = 'http://havanarumbaonline.com/web/HAVRUM/assets';

$config['BaseUrl'] = 'http://havanarumbaonline.com/web/HAVRUM/assets';

任何见解都将不胜感激.... enter image description here

1 个答案:

答案 0 :(得分:0)

问题与(1)“PHP”以及代码中的版本和(2)过时的SESSION代码有关。在服务器上更新PHP并更新SESSION_REGISTER代码后。