From: | "Antonio Garcia" <angarben(at)hotmail(dot)com> |
---|---|
To: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: Error pg_connect en PHP al intentar conectar con Postgres |
Date: | 2006-11-12 19:40:00 |
Message-ID: | BAY120-F305F4D76EDE1266A8A5D52DDF50@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
<html><div style='background-color:'><P>Yo pienso que el fichero php.ini tiene una extensión llamada <BR>extension=php_pgsql.dll </P>
<P>que hay que habilitar y en una de sus carpetas tiene el llamado fichero php_pgsql.dll</P>
<P>así que hay algo que no hago bien pero no se que puede ser.</P>
<P>Esto mismo ya lo hice con mysql y funcionó bien. Pero ahora con postgresql no funciona.??</P><PRE style="MARGIN: 0em">Hola Antonio,
En realidad lo que quiere decir eso es que tu PHP no tiene soporte
para Postgres.
No he usado PHP ni Postgres en windows, pero seguro hay muchos
manuales que hablan del tema.
Saludos
Nestor
On 11/12/06, Antonio Garcia <angarben ( at ) hotmail ( dot ) com> wrote:
</PRE>
<BLOCKQUOTE style="PADDING-LEFT: 0.85em; MARGIN: 0em; BORDER-LEFT: #5555ee 0.2em solid"><PRE style="MARGIN: 0em">
Buenas, soy nuevo y he instalado postgres 8.1.5. en Windows xp. De momento
funciona. He creado un usuario llamado antonio y le he incluido una
contraseña paterna01.
He creado una base de datos llamada customer y un tabla llamada customer con
DNI, NOMBRE Y APELLIDO.
He configurado el fichero pg_hba.config de la siguiente manera:
host all all 127.0.0.1 255.255.255.255 trust
¿que tengo que poner para que me pida la contraseña? la ip de mi portatil
es: 192.168.2.117
¿debería cambiar 127.0.0.1 por esta?
Lo que es postgres me funciona bien. Ahora el problema lo tengo al intentar
conectarme desde php 5.
En PHP.INI he quitado el # de php_pgsql.dll
extension=php_pgsql.dll
sin ;
y he reiniciado.
El codigo PHP es el siguiente:
<?php
function conectar(){
$cadena_conexion = "host=localhost dbname=customer user=antonio
password=paterna01";
if(($this->conexion = pg_connect($cadena_conexion)) == false){
return false;
echo "No funciona;";
}else{ // ESTE ELSE LO AGREGUE YO
echo "paso por aqu&iacute;";
return true;
}
}
if(conectar()){
echo "Verdad";
}else{
echo "Falso";
}
?>
Y el error que me da es:
Fatal error: Call to undefined function pg_connect() in
c:\ws\www\ejem\ejem07bbbconsulta base datos postgres.php on
line 20
y no se donde está el fallo.
Pero no se conecta.
Saludos,
----------
Antonio García Benlloch
Correo:
angarben ( at ) hotmail ( dot ) com
angarben ( at ) topo ( dot ) upv ( dot ) es
Web:
<A href="http://personales.alumno.upv.es/~angarben" rel=nofollow>http://personales.alumno.upv.es/~angarben</A>
________________________________
Encuentra una aventura, un romance o al amor de tu vida. Date de alta
gratis.
</PRE></BLOCKQUOTE><PRE style="MARGIN: 0em"></PRE><BR><BR><BR>
<DIV>Saludos, <BR>---------- <BR>Antonio García Benlloch <BR><BR><STRONG>Correo: <BR></STRONG>angarben(at)hotmail(dot)com <BR>angarben(at)topo(dot)upv(dot)es <BR><BR><STRONG>Web: <BR></STRONG>http://personales.alumno.upv.es/~angarben</DIV>
<DIV><FONT color=#000000></DIV></FONT></div><br clear=all><hr>Busca a la vez en Internet, en directorios, en enciclopedias... <a href="http://g.msn.com/8HMBESES/2740??PS=47575" target="_top">Atrévete con el nuevo MSN Search</a> </html>
Attachment | Content-Type | Size |
---|---|---|
unknown_filename | text/html | 3.0 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Damián Culotta | 2006-11-12 19:45:56 | Re: Error pg_connect en PHP al intentar conectar conPostgres |
Previous Message | Jaime Casanova | 2006-11-12 19:14:57 | Re: sobre herencias |