Più veloce e più sicuro

Servizi ed estensioni per migliorare il tuo Joomla!

 

Estensioni

Risparmia tempo con le nostre estensioni gratuite

Ammettiamolo, siamo pigri. Quando dobbiamo tirar su un nuovo sito, ottimizzarlo, migliorarlo, gestirne i contenuti, tradurlo, siamo più che pigri. Le nostre estensioni rendono più semplici i compiti di ogni giorno di un webmaster. Tutte le nostre estensioni gratuite hanno inoltre la garanzia: 100% soddisfatti oppure vi rimborsiamo, senza cavilli.

Migra

Con il nostro aiuto una migrazione è semplice come fare una telefonata.

Sia che dobbiate aggiornare un semplice Joomla 1.5 o 2.5, sia che abbiate tante estensioni complesse come Virtuemart, Sobi, Jomsocial ed altre di difficile aggiornamento, abbiamo l'esperienza e la competenza per supportarvi.

Vai ai dettagli  Acquista la valutazione pre-migrazione

Migra da/a altri CMS

Sia che il tuo sito sia fatto in Wordpress, Magento, phpCart, Drupal, un CMS custom oppure il caro vecchio html, possiamo portarlo a Joomla! e viceversa*.

*Prima di migrare da Joomla, vi chiediamo di spiegarci i problemi che state incontrando. Di solito è più veloce ed economico risolvere i problemi piuttosto che iniziare da capo, e potenzialmente incontrarne di nuovi.

Ottimizza

Hai già provato le nostre estensioni Little Helper e Too Many Files? Sono un primo passo per rendere il tuo sito più veloce. Ma c'è di più...

Il pacchetto Revisione del Sito include:

  • Revisione completa dell'architettura e della configurazione
  • Tutte le ottimizzazioni standard
  • Impostazione SEO di base

Inoltre, evidenzia le attività extra che possono essere necessarie per ottenere il massimo dal tuo sito:

  • Suggerimenti SEO off-site e on-site
  • Grafica e sprite
  • Revisione ed ottimizzazione delle estensioni
Scopri i nostri pacchetti base di ottimizzazione Scegli il tuo servizio di ottimizzazione

Il nostro lavoro è facile da verificare, tutto quello che ti serve è un cronometro ed un programma di analitics.

Niente Panico

Sei andato in produzione con un sito nuovo, salvo scoprire stranevolezze ed errori?

Il tuo sito è stato bucato / defacciato / irraggiungibile?

Il webmaster è sparito senza lasciar traccia? Abbiamo il suo nuovo numero di telefono e te lo forniremo per una cifra ragionevole.

Scopri i nostri pacchetti di disaster recovery - Acquista un servizio di Disaster Recovery ora

Articoli

Cerchi suggerimenti, estensioni e supporto?


Information for developers and control maniacs

Architecture and implementation highlights for Joomla Little Helper

Welcome developer!

If you want to contribute to this project, let us know. Our repo is on github

If you do add any useful features, fix bugs, improve in any way the extension we'd love to hear your feedback and include your code.

Description

This package consists of one component (with several controllers, one per function), and some helper modules.

It is heavily commented in code, but to get a good grasp of the main ideas keep reading.

Joomla Security and compatibility

The extension has been tested against malicious attacks, including hijacking, xss, and dom manipulation.  All input coming from a user, be it parameters, get, post etc, is parsed to prevent bypassing our security.

No input from the user is _ever_ used to perform actions on the filesystem: i.e. if the input of a user matches one of the predefined options we have previously enabled and tested, it will be carried through.  This means that extending it could be hindered by our security precautions; if you wish to make some local edits, you are welcome to contact us with your requirements and we'll gladly assist you in getting your task completed according to our best practices.

The package

A basic installation consists of two instances of the module, one published in position cpanel , the other in position status in the Joomla! administrator.  These provide quick ajax access to the component's features.  You have shortcuts to create these files from the components main view.

Trash & Cache: Joomla Recycle Bin, Joomla Trash and Joomla Cache Cleaner

This is the most system intensive feature.  It clears the Joomla recycle bin (trash) and the cache.

The recycle bin is cleared with the Joomla JTable descendants, not with direct queries to the database.  Only if this fails, do we failback to direct queries.

The selected cache folders that need to be deleted are processed like this:

First, an attempt to rm -rf the folder is made, using one of the php exec(), passthrough(), system() functions. This raises an alert in some antiviruses; it can be safely ignored, since the only purpose for those functions is to remove a folder quickly; no user input is passed to system commands for safety.

Whether this fails or not, a php function which traverses the whole tree and clears its files and empty branches will run afterwards.  In case the deletion runs into errors, this last function will also try to make files writeable (chmod 0777) before deleting.

FAVIcons

The new v.2 features a new drag-n-drop support, with an interface to crop an image and real-time preview.

Joomla Security / .htaccess / Joomla SEF

The source .htaccess files are stored in components/com_littlehelper/assets/txt

Please read the F.A.Q. to learn about the risks, issues and solutions you might need.