Friday, January 14, 2011

Games Were U Get Pregnant

School, University, Research. Another Italian begins from here. "


On 14 January, 17 h, via Rivani 35, the seat of the PD of Bologna there was an important session of the Party leadership on
School, University, Research . another Italian begins from here. "

The Forum of the school, has produced and collected a range of materials that are now in the blog legible

www.scuolaperdirezioneaperta.blogspot.com

clicking the link above you will have access to materials.

The texts include the relation of texts and interventions and Graziella Giorgi Davide Ferrari, Alberto Altino, Frabboni Franco, Luigi Guerra Ivana Summa, Paolo Rebaudengo, Giovanni Sedioli, Luciano Russo, Rosanna Facchini, Simona Lembi and Marilena Pilla.

In the blog are the references of the national planning materials submitted by Frank Pugliese.

Tuesday, January 11, 2011

Installing Matlab 2006b On Windows 7

Install Joomla locally on Ubuntu step by step

But as I say, you give yourself up to competition ? :-DDD
And then, how to all that are there for Ubuntu?
Yes, but this time it's for a good cause (and fix a few small tips ... ;-))
In any case, I will be as short as last time :-P

Install LAMP


Open System -> Administration -> package manager (synaptic)
Select Edit -> select Activity
A window will open: Check the item LAMP server and give OK.

If this option is not present you can follow the following procedure
NB markedly data (especially passwords) that will be gradually applied for, or go mad :-

sudo apt-get install apache2

-> root password

Test Apache
Copy (or type) in the URL field of your browser:

http://localhost/

must appear the words "It works!"


Install PHP

From terminal to:

sudo apt-get install php5 libapache2-mod-php5

Then restart Apache. From the terminal to:

sudo / etc/init.d/apache2 restart

Check PHP installation

From terminal to:

sudo gedit / var / www / testphp.php

to open a file called
phptest.php .
Copy and paste the file within the string:


\u0026lt;? Php phpinfo ();?>

Save and close the file

For verification, copy (or type) in the URL field of your browser:

http://localhost/testphp.php
Installing MySQL
From the terminal, give:

sudo apt-get install mysql-server

MySQL should start automatically to need to set the password of the database server. Should not happen, then, from the terminal to:

mysql-u root

At mysql prompt enter the following line instead of entering our password choice yourpassword

mysql> SET PASSWORD FOR 'root' @ 'localhost' = PASSWORD ('yourpassword');
NB1 the semicolon is essential for communicating to the closing of the mysql command

NB2 in case of problems with the mysql password can reconfigure the service providing terminal

sudo dpkg-reconfigure mysql-server

-> / / / Optional step: If we publish in our private network (or internet), our server, it should be changed " Bind Address ", which is the loopback network address of our computer to recognize it from other computers in the case of a private network, simply enter the network address provided by the router for your PC (eg. 192,168 .1.4).

From terminal to:

gksudo gedit / etc / mysql / my.cnf

Then change the line

  bind-address = 127.0.0.1    

replacing 127.0.0.1 (typically localhost) with address adequately. End optional step / / / \u0026lt;-
.

Install PhpMyAdmin

PhpMyAdmin is a great (and simple) tool be launched by the browser to manage the MySQL database server
From terminal to :

sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadmin

In order for php to work with mysql need to edit the php.ini file.

to edit, to a terminal:

gksudo gedit / etc/php5/apache2/php.ini
and uncomment (ie we remove the initial semicolon) from the line
; extension = mysql.so

(Note to quickly find the line we can use the Find menu ... Try inserting the word Gedit extension) order to make it:

extension = mysql.so

to save and exit Gedit.

Endless reboot Apache. From the terminal to:

sudo / etc/init.d/apache2 restart
Test your browser by typing in

http://localhost/phpmyadmin

Enter the password to log in as administrator and database server inseriamola in the window that appears.

End LAMP installation

Install Joomla Download the Joomla we are interested in (let's say you call Joomla_1.x.x_ita - Stable) in any folder (eg. / Home / user / download) and scompattiamolo.

to unpack, we can do as a user terminal
cd / home / user / Downloads

tar-xvzf Joomla_1. _ita Xx - Stable.tgz

or we can do it graphically. Open Nautilus (or Konqueror or Dolphin or other window manager), we move in Hollywood, we right click on the archive file and type 'Extract Here' (with Konqueror, choose the 'Autodetect the subfolder')
Then we open Nautilus as root (from the terminal: sudo nautilus) or better in Krusader root mode (yes, I know, use the window manager to do 'these things is not to be geeks, but who cares, sometimes one has to change, no?:-D), copy the extracted folder into the folder / var / www / and rename it as we are concerned (eg miojoomla)
We then Apache (remember that the transfer we did it as root, which owns the folder) the control of the folder by changing the owner miojoomla and the group.
verify with

cat / etc / group


that there is www-data, ie the user special, with its group, which makes Apache to write in / var / www /.

Once verified consegnamogli giving control of the folder:
sudo chown-R www-data: www-data / var / www / miojoomla
Create the mysql database for Joomla and the user database administrator

NB / / -> Note:

Joomla is set to UTF. Often, instead of the MySQL database is set with default collation
latin1_xxxxxx_ci and this can cause display problems when using non-Latin characters (eg Cyrillic).

Jomla To make that work properly, you must choose, when creating the database, the collation UTF-8 Unicode (utf8) (okay utf8-general-ci)


If the database already created, you will need to back up the database (you never know ) and then launch
for each database table , the following SQL query in order to change the setting:
ALTER TABLE CONVERT TO CHARACTER SET utf8 your_table_name COLLATE utf8_general_ci; end note \u0026lt;- / / In the browser, type http:// localhost / phpmyadmin

Enter your desired name for the database (eg joomladb), we test the collation utf8-general-and let us create
on the list and select the database left, choose 'Privileges', select 'Create a new user' (the person who will manage the database during the administration of Joomla Joomla)



screen placed in the field 'name' the name chosen (eg joomlauserdb), in the 'host' enter localhost and password in the fields of the new password (eg (joomlapwdb), leaving the grant (the privileges) as well as the default settings, then save it.

NB the same operation can be done from the command line giving

mysql-u root -


to enter as administrator of mysql. Then (enter after each line):
CREATE DATABASE joomladb;

joomladb .* TO GRANT ALL ON 'joomlauserdb' @ 'localhost' IDENTIFIED BY 'joomlapwdb';

FLUSH PRIVILEGES;

EXIT

Install Joomla

D
igitiamo

http://localhost/miojoomla and we start the ' Installation

At the end, you must remove the installation folder present in / var / www / miojoomla.

We can do it through sudo Nautilus or Krusader root, or a terminal
sudo rm - R / var / www / miojoomla / installation

Done! :-)


For those wishing to transfer an existing installation on the local server you will need:
- move the folder of the site from the remote server via ftp to a local user folder

- move (as root) folder in / var / www /
- to transfer the folder permissions to Apache

- download the site's database, eg via phpmyadmin provided by the site server with the export option (unless it is already set to automatically back up daily via email)
- import the mysql database server in local phpmyadmin local
- have to verify the binding site by logging in as administrator


PS was released Joomla 1.6 Stable :-)

Costco European Cookies Sampler

Sites dynamic local user database and website users


Sometimes I feel a bit 'of confusion in the understanding of the roles of identifying you if you need to manage multiple web sites on the same server, especially in local to do all the appropriate tests.

For this reason I wrote this brief note of clarification, hoping it will be helpful.
as examples of locally based installation of Joomla, but the discussion can obviously be extended to other dynamic sites.
The username and password from the main user of the Joomla database, and the administrator name and password necessary to enter the site with administrator privileges ARE NOT THE SAME WHAT.

Nothing prevents us from inserting the same parameters (same name and same password in both cases, although in terms of security is nonsense) but the important thing is to understand the distinction between these .
To clarify, we summarize the functions:
In mysql server, which can contain a variety of databases, there are:
the primary user (usually, but not necessarily, called root) with its password, which can access the server mysql via terminal or via http://localhost/phpmyadmin; this user manages all the databases on the server, not just to Joomla, and in fact is present in all the database of those listed, to find out, once entered into with phpmyadmin these privileges, select a database at a time and we see the presence of this user under 'privileges';

users with their password (usually but not exclusively, one for each database), which can access a specific database to administer it (these people must be set in any particular database) to each site in this (the same server can host many web sites), the specific user is used directly from the site during the administration of the specific database of the specific site, so much so that you have set it at the time of initial configuration (in other words it must be said that the site is the database and how to manage the administrative user data).
As for the site, however, there is an administrator user with its password, which is the only one who can administer the site coming from the back end (folders AUTHORITIES; in local http://localhost/nomesito/administrator), and users with their passwords, which may enter the restricted areas through their front end (before the login site viewable by the browser) without administrative privileges
  • To clarify, here is an example (
  • Note: all names and passwords listed below are random, are used only as an example and, above all, do not meet the minimum safety requirements, then DO NOT USE IT) .

In the local web server they were loaded again to install a site called Joomla (CMS) and a site called ZenCart (eCommerce) (for 'site called' is the name of the folder that we uploaded to the web root folder, which by default is located in / var / www / but we've seen can be placed where it seems).
local MySQL database server will then be created before anything else, two databases (more than the default ones): joomladb and
zencartdb . The called root, with password
first, is one that can manage the server database, and therefore can create and edit all

databases, eg. http://localhost/phpmyadmin through.
The root user enters the server and creates the database, once created, enter in each of these, select the privileges and creates the corresponding administrator user on the specific database.
For Joomla site, created in the database
joomladb the called joomlauserdb with joomlapwdb password, this is the only one who can handle joomladb database.
For ZenCart site, created in the database zencartdb the called zencartuserdb with zencartpwdb
password, this is the only one who can handle zencartdb database.
Let sites.
During installation, each site will request the name of the site with her password to see who can enter the back end of the site with administrator privileges to modify it. If you choose Joomla joomlaadmim password joomlapwadmin ; in Zencart you choose
zencartadmin
password zencartpwadmin . Also during installation, each site will ask you which is the database and which is the user can administer it, the prompt, enter the adjusted data in the creation of the database.

At this point we
:
the Joomla (http://localhost/joomla), which will be managed by the user joomlaadmim password joomlapwadmin (through http://localhost/Joomla/administrator/), and that will save the data in the database by the user joomladb
joomlauserdb password joomlapwdb ; ZenCart site, (http://localhost/ZenCart), which will be managed by the user
zencartadmin password
zencartpwadmin
(through http://localhost/ZenCart/admin) and that will save the data in the database zencartdb by the user
  • zencartuserdb
    password zencartpwdb ; Hope this clear:-D Good site all

Saturday, January 8, 2011

Where To Get Temperary Lisense In Columbus

Bologna. Candidates. Right to a trumpet.

right one trumpet. The League announces that, Bologna, already has three candidates for mayor. It makes' names. If you want, you think well to Huey, Dewey and Louie. Meanwhile
is set in motion the phalanx civic Eng. Aldrovandi. E Cazzola? And Mazzucca? And Corticelli? The elders are wary.
"They're all good"-think and say the elegant silver hair Senator Berselli-"But why not my aunt?".
left, or about the primaries, between fear and which command the forces that generate, have pruned the tree and 23 will be decided. Then, true, much will be done, but .... A Right
the long game (Subbuteo?) Seems still in its infancy.
One day the Leader will convene at the Villa Certosa. Too bad if it is still winter, with so many cool things you can show mica. Better to take time. And if He did
urgency? "We will go with the phone book, so privacy has thus reduced .."

"The opposite" book
Davide Ferrari
Unit Emilia-Romagna