Add new comment

Importar con Feeds desde joomla 1.5 a drupal 7

Cosas a tener en cuenta:-El campo Cuerpo en joomla está separado en dos, el primero introtext tiene lo que sería el teaser, el segundo fulltext tiene lo que sería el resto del Cuerpo. Hay que juntar los dos campos en uno para después poder hacer la importación correctamente. Instrucciones:altertable tablaexportacion add body longtext;Next, update it with the concatenation of the old columns.update tablaexportacion set body = concat(introtext,'<!--break-->', fulltext)(This ends up in the form 'Kirk, John M')Then, remove the old columnsaltertabletablaexportacion dropcolumnintrotext;altertabletablaexportacion dropcolumnfulltext;

-las imágenes vienen por defecto en la carpeta images/stories en joomla 1.5, El procedimiento es copiar tal cual la carpeta images en sites/default/files. Así que hay que hacer un REPLACE en la base de datos:UPDATE tablaexportacion SET `body`=replace(`body`, 'images/stories', 'sites/default/files/images/stories')-Para exportar taxonomías que tengas múltiples términos. Por ejemplo un artículo que tenga asociadas varias regiones: Cantabria, Santander, etc. En la configuración del 

Anonimo HTML

  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <hr> <br> <br /> <ul> <ol> <li> <em> <b> <u> <i> <strong> <sub> <sup> <code>
  • Lines and paragraphs break automatically.
  • HTML tags will be transformed to conform to HTML standards.

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
By submitting this form, you accept the Mollom privacy policy.