1.- Busquemos el archivo
/mambots/editors/htmlarea3_xtd/popups/ImageManager/config.inc.php
---Le hacemos una copia a este archivo--
2.- Abrimos el archivo con el editor que estes usando (dreamweaver, FrondPage, notepad, etc) y buscamos estas lineas:
//example, this is the actual file system path
//of the web server document root. e.g.
// Filesystem == /home/web/www.yourdomain.com
$BASE_DIR = $_SERVER['DOCUMENT_ROOT'];
//the path where the browser sees the document root (i.e.
http://www.yourdomain.com/)
$BASE_URL = "/";
3.- Reemplazamos la lineas anteriores por estas:
//example, this is the actual file system path
//of the web server document root. e.g.
// Filesystem == /home/web/www.yourdomain.com
$basePath = dirname( __FILE__ );
$path = $basePath . '/../../../../../configuration.php';
require( $path );
$BASE_DIR = $mosConfig_absolute_path;
//the path where the browser sees the document root (i.e.
http://www.yourdomain.com/)
$BASE_URL = $mosConfig_live_site;
4.- Busquemos el archivo
/mambots/editors/htmlarea3_xtd/popups/InsertFile/config.inc.php
---Le hacemos una copia a este archivo--
5.- Abrimos el archivo con el editor que estes usando (dreamweaver, FrondPage, notepad, etc) y buscamos estas lineas:
$MY_DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT']."/images/stories"; // if you are using Docman change this to '/dmdocuments';
$MY_BASE_URL = '/images/stories'; // if you are using Docman change this to '/dmdocuments';
6.- Reemplazamos la lineas anteriores por estas:
$basePath = dirname( __FILE__ );
$path = $basePath . '/../../../../../configuration.php';
require( $path );
$MY_DOCUMENT_ROOT = $mosConfig_absolute_path."/images/stories"; // if you are using Docman change this to '/dmdocuments';
$MY_BASE_URL = $mosConfig_live_site.'/images/stories'; // if you are using Docman change this to '/dmdocuments';
Listo ahora tu editor colocara la ruta absoluta de tus imagenes.