Jump to content

urano68

Members
  • Posts

    12
  • Joined

  • Last visited

Posts posted by urano68

  1. Good afternoon, my account has been archived. My inactivity is due to the fact that in my country there are serious problems with the electricity supply and the Internet. At the moment these services have been being restored and for this reason I have resumed my projects, one of which is the use of their excellent hosting, it would be very helpful if they can support me in the restoration of my account and thus be able to continue with my job. Thank you very much in advance.

     

  2. Thank You Krydos

     

    I could solve the error, it is because of the prefix that you have to put to the database and the user, with the data that you wrote to me, I did it with both parameters and I already have access to the database, thank you very much for your help and patience

     

     

     
     
    I could solve the error, it is because of the prefix that you have to put to the database and the user, with the data that you wrote to me, I did it with both parameters and I already have access to the database, thank you very much for your help and patience
  3. Annex I send you what is in the PostgreSql cPanel, database and user database and the php code of my application, thanks for what you can help me.

     

    User:
                                                                  urano68_postgres                                                          
    Database:
                                                                          urano68_taxis                                                              
     

    php

    <?php
    
    $sis_titulo="";
    
    $sis_estilo="";
    
    $sis_charset="utf-8";
    
    $sis_oficina="001";
    
    $sis_proyecto="";
    
    $bd_servidor="localhost";
    
    $bd_puerto="5432";
    
    $bd_nombre="taxis";
    
    $bd_usuario="urano68_postgres";
    
    $bd_clave="postgres";
    
    ?>
    
  4. Now I have problems with this error:

     

    Host= localhost; DBname= taxis; User= postgres; Password= postgres

     

     

    Warning: pg_connect(): Unable to connect to PostgreSQL server: FATAL: password authentication failed for user "postgres" in /home/urano68/public_html/servicios.digitales/configuracion/conexion.php on line 3

     

    I think that for to fix this error open PostgreSQL client authentication configuration file pg_hba.conf

     

    By default Postgresql uses IDENT-based authentication. All you have to do is allow username and password based authentication for your network or webserver. IDENT will never allow you to login via -U and -W options. Append following to allow login via localhost only:

     

    local    all    all    trust
    host    all    127.0.0.1/32    trust

×
×
  • Create New...