(Reading time: 1 minute)

A volte può capitare che nel menu Componenti scompaia la voce Aggiornamenti di Joomla! . Questo di solito accade dopo un aggiornamento fatto copiando i nuovi file sul server.
Per ovviare a questo inconveniente e necessario andare a modificare una specifica tabella del database, solitamente tutti gli hosting mettono a disposizione il comodo strumento phpMyAdmin. La tabella da modificare è #__menu  con la query seguente:

 

INSERT INTO `#__menu` (`menutype`, `title`, `alias`, `note`, `path`, `link`, `type`, `published`, `parent_id`, `level`, `component_id`,  `checked_out`, `checked_out_time`, `browserNav`, `access`, `img`, `template_style_id`, `params`, `lft`, `rgt`, `home`, `language`, `client_id`) 
VALUES ('menu', 'com_joomlaupdate', 'Joomla! Update', '', 'Joomla! Update', 'index.php?option=com_joomlaupdate', 'component', 0, 1, 1, (SELECT extension_id FROM #__extensions WHERE `name` = 'com_joomlaupdate'), 0, '0000-00-00 00:00:00', 0, 0, 'class:joomlaupdate', 0, '', 41, 42, 0, '*', 1);
In cui #_ va sostituito con il prefisso delle tabelle impostato sul vostro database. esempio: se la vostra tabella è j3x_menu la parte con #_ nella query va sostituita con j3x_

Riferimenti:

(Reading time: 1 minute)

I think that see my name@localhost is not so beatiful, so i want to change it. It's a simple thing to do in afew steps.

1. Edit hosts file with:

sudo gedit /etc/hosts

and put the name in the row with 127.0.0.1
2. Edit hostname file:

sudo gedit /etc/hostname

then restart your shell

(Reading time: 1 minute)
This is a very simple project. All the following schemes are made with fritzing
Required materials:
  1. Arduino board
  2. 220 ohm resistor
  3. 1 LED
  4. some wires
(Reading time: 1 minute)

Find JDK Installation Directory

First you need to know the installation path for the Java Development Kit.

Open the default installation path for the Java Development Kit

 

C\Program Files\Java

 

There should be a subdirectory like

 

C:\Program Files\Java\jdk1.6.0_10

 

Set the JAVA_HOME Variable

Once you have the JDK installation path:

  1. Right-click the My Computer icon on
  2. your desktop and select Properties.
  3. Click the Advanced tab. Click the
  4. Environment Variables button. Under System Variables, click New.
  5. Enter the variable name as JAVA_HOME.
  6. Enter the variable value as the installation path for the Java Development Kit.
  7. Click OK.
  8. Click Apply Changes.

You might need to restart windows.

Subcategories