Matware

Blog

What is Linux?

mtwMultiple v2.5.0 Released

mtwMultiple is an extension for Joomla 2.5 that allows to create and manage multiple Joomla installations.

This new version add the possibility to install a new sites into your Joomla 2.5.

Download: http://matware.com.ar/downloads/joomla/mtwmultiple.html

Forum: http://www.matware.com.ar/forum/projects/mtwmultiple.html

Ocultar el panel inferior en GNOME3

Primero tenemos que tener la herramienta dconf-editor que se encuentra en el paquete dconf-tools:

sudo apt-get install dconf-tools

Despues abrir dconf-editor e ir a:

org → gnome → gnome-panel → layout

Cambiar ['top-panel','bottom-panel'] por ['top-panel'] y apretar enter.

Eso es todo amigos.

jUpgrade v1.2.1 released!

update

With this release we added more extensions that can migrate the custom data of each extension to Joomla 1.7. Special thanks to WebEmpresa that support this project contracting services to add new functionalities to jUpgrade. This action is a big help for this free project and hope that the new functionalities works for everyone. Thanks again to WebEmpresa to support open source project and helps the community.

Please contact us if you like to add your Joomla extension into the jUpgrade migration.

Remember that a tracker is created for jUpgrade and Joomla 1.7 migrations bugs. You can access (and use it) here:

http://forge.joomla.org/gf/project/joomla/tracker/?action=TrackerItemBrowse&tracker_id=10539

And you must to enable System - Mootools Upgrade plugin that is included in Joomla 1.5.19 and greater.

IMPORTANT: if you have problems with download or decompress steps please RTFM -> http://matware.com.ar/forum/projects/jupgrade/jupgrade-f-a-q.html

The list of the changes:

  • Adding K2 support
  • Adding Virtuemart support
  • Adding CompoJoomComment support
  • Adding BreezingForms support
  • Joomla 1.7 package updated to rev. 22013
  • Fix content migration using non latin characters (thanks agishev)
  • Added Russian (ru-RU) translation (thank Alexey Baskinov)
  • Added Lituanian (lt-LT) translation (thanks Martis)
  • Updated Traditional Chinese (zh-TW) thanslation (thanks abokuo)
  • Updated French (fr-FR) translation (thanks Olivier)
  • Updated sk-SK translation (thanks P3T3R)

Migrations supported:

  • Banners - 100%
  • Categories - 100%
  • Contacts - 100%
  • Content - 100%
  • Menus - 100%
  • Modules - 100%
  • Newsfeeds - 100%
  • Users - 100%
  • Weblinks - 100%

More Info: http://matware.com.ar/joomla-projects/jupgrade.html

Como buscar un registro con la clase JTable

Hace rato que no hago esto, pero voy a volver al habito de registrar algunas cosas y que sirvan de respaldo si me las olvido. Supongamos que tenemos que buscar un registro determinado usando la tabla JTable del framework de Joomla lo hariamos de esta manera:

$table = new TableWebTest($db);
$row = $table->load(array('campo' => 'busqueda'));
You are here