2016-02-23 113 views
2

当我将图片上传到CMS页面(Prestshop)时,它使用绝对路径保存。如果您在本地主机上工作,然后在将该网站移动到远程服务器后,这会非常糟糕。Prestashop:用相对路径保存图像?

我该如何改变这种情况?从而使图像被保存为相对路径:

图像被保存这样http://www.example.com/img/cms/my-image.jpg

我需要它是这样img/cms/my-image.jpg

回答

1

你可以看看TinyMCE的配置文件/js/admin/tinymce.inc.js

function tinySetup(config) 
{ 
    if(!config) 
     config = {}; 

    //var editor_selector = 'rte'; 

    if (typeof config.editor_selector != 'undefined') 
     config.selector = '.'+config.editor_selector; 

    default_config = { 
     selector: ".rte" , 
     plugins : "colorpicker link image paste pagebreak table contextmenu filemanager table code media autoresize textcolor anchor", 
     browser_spellcheck : true, 
     toolbar1 : "code,|,bold,italic,underline,strikethrough,|,alignleft,aligncenter,alignright,alignfull,formatselect,|,blockquote,colorpicker,pasteword,|,bullist,numlist,|,outdent,indent,|,link,unlink,|,anchor,|,media,image", 
     toolbar2: "", 
     external_filemanager_path: ad+"/filemanager/", 
     filemanager_title: "File manager" , 
     external_plugins: { "filemanager" : ad+"/filemanager/plugin.min.js"}, 
     language: iso, 
     skin: "prestashop", 
     statusbar: false, 
     relative_urls : false, 
     convert_urls: false, 
     entity_encoding: "raw", 
     extended_valid_elements : "em[class|name|id]", 
     valid_children : "+*[*]", 
     valid_elements:"*[*]", 
     menu: { 
      edit: {title: 'Edit', items: 'undo redo | cut copy paste | selectall'}, 
      insert: {title: 'Insert', items: 'media image link | pagebreak'}, 
      view: {title: 'View', items: 'visualaid'}, 
      format: {title: 'Format', items: 'bold italic underline strikethrough superscript subscript | formats | removeformat'}, 
      table: {title: 'Table', items: 'inserttable tableprops deletetable | cell row column'}, 
      tools: {title: 'Tools', items: 'code'} 
     } 
    }; 

    $.each(default_config, function(index, el) 
    { 
     if (config[index] === undefined) 
      config[index] = el; 
    }); 

    tinyMCE.init(config); 
} 

默认情况下,有一个值relative_urls设置为false