以下代码来自“配置”文件,该文件控制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';
单击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';
答案 0 :(得分:0)
问题与(1)“PHP”以及代码中的版本和(2)过时的SESSION代码有关。在服务器上更新PHP并更新SESSION_REGISTER代码后。