I will try to translate: I have installed the UniforServer, and the Apache works to me perfectly. Nevertheless, with himself not to connect with Base de Datos. I make the connection thus: <? $sql_host="localhost"; // Host $sql_usuario="root"; // Usuario de Mysql, según la tabla "user" de mysql $sql_pass="67457e226a15bd"; // contraseña de Mysql, según la tabla "user" de mysql $sql_db="datos"; // Base de datos que se usará. $sql_tabla="direcciones"; // Nombre de la tabla que contendrá los datos de los usuarios $link = mysql_connect($sql_host, $sql_usuario,$sql_pass) or die("It was not possible to be connected to Base of data") or die(mysql_error()); mysql_select_db($sql_db, $link) or die(mysql_error()); ?> It gives an error me, because it is not possible to be connected to Base of data: "Warning: mysql_connect() [function.mysql-connect]: Can't connect to MySQL server on 'localhost' (10061) in W:\www\entrar.php on line 21 It was not possible to be connected to Base of data" -------------------------------------------------------- If I publish htaccess, appears the following thing: # This file provides security to the server limiting access to the localhost only. # Comment to deactivate. Order Deny,Allow Deny from all Allow from 127.0.0.1 # To disallow execution of cgi scripts in this directory comment next two lines. AddHandler cgi-script .bat .exe .pl .cgi Options +ExecCGI # To unlock Admin Panel, comment the next 4 lines. # Defaults: Username - admin; Password - userver #AuthName "Uniform Server - Admin Panel 1.0 Alpha" #AuthType Basic #AuthUserFile /htpasswd/home/admin/www/.htpasswd #Require valid-user ----------------------------------------- If I make this connection, also it gives error me: <? $sql_host="localhost"; // Host $sql_usuario="Admin"; // Usuario de Mysql $sql_pass="userver"; // contraseña de Mysql $sql_db="datos"; // Base de datos que se usará. $sql_tabla="user"; // Nombre de la tabla que contendrá los datos de los usuarios connect with Base de Datos. I make the connection thus: <? $sql_host="localhost"; // Host $sql_usuario="root"; // Usuario de Mysql, según la tabla "user" de mysql $sql_pass="67457e226a15bd"; // contraseña de Mysql, según la tabla "user" de mysql $sql_db="datos"; // Base de datos que se usará. $sql_tabla="direcciones"; // Nombre de la tabla que contendrá los datos de los usuarios $link = mysql_connect($sql_host, $sql_usuario,$sql_pass) or die("No se pudo conectar a la Base de datos") or die(mysql_error()); mysql_select_db($sql_db, $link) or die(mysql_error()); ?> !Help!. No longer I know as to connect with the data base. Note: Before EasyPHP used and it worked to me perfectly.