Ver Mensaje Individual
  #5 (permalink)  
Antiguo 07/08/2013, 21:46
hjorge01
 
Fecha de Ingreso: febrero-2013
Ubicación: Madrid
Mensajes: 10
Antigüedad: 11 años, 2 meses
Puntos: 0
Respuesta: Error en configuracion php.ini con postgressql

si ya reinicie servicios pero no funciona, con xaamp o vertrigo nunca tenia problemas, ahora estoy usando apache de enterprise db que lo baje de Application Stack Builder de postgresql. este es parte de mi php.ini q fui cambiando

Código PHP:
Ver original
  1. ;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ; Paths and Directories ;
  3. ;;;;;;;;;;;;;;;;;;;;;;;;;
  4.  
  5. ; UNIX: "/path1:/path2"
  6. ;include_path = ".:/php/includes"
  7. ;
  8. ; Windows: "\path1;\path2"
  9. include_path = ".;d:\Postgresql\php\ext"
  10. ;
  11. ; PHP's default setting for include_path is ".;/path/to/php/pear"
  12. ; http://php.net/include-path
  13.  
  14. ; The root of the PHP pages, used only if nonempty.
  15. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  16. ; if you are running php as a CGI under any web server (other than IIS)
  17. ; see documentation for security issues.  The alternate is to use the
  18. ; cgi.force_redirect configuration below
  19. ; http://php.net/doc-root
  20. doc_root=
  21.  
  22. ; The directory under which PHP opens the script using /~username used only
  23. ; if nonempty.
  24. ; http://php.net/user-dir
  25. user_dir=
  26.  
  27. ; Directory in which the loadable extensions (modules) reside.
  28. ; http://php.net/extension-dir
  29. ; extension_dir = "./"
  30. ; On windows:
  31. extension_dir = "d:\Postgresql\php\ext"
  32.  
  33. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  34. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  35. ; disabled on them.
  36. ; http://php.net/enable-dl
  37. enable_dl=On
  38.  
  39.  
  40.  
  41.  
  42. ;
  43. ;extension=php_bz2.dll
  44. ;extension=php_curl.dll
  45. ;extension=php_fileinfo.dll
  46. extension=php_gd2.dll
  47. ;extension=php_gettext.dll
  48. ;extension=php_gmp.dll
  49. ;extension=php_intl.dll
  50. ;extension=php_imap.dll
  51. ;extension=php_interbase.dll
  52. ;extension=php_ldap.dll
  53. ;extension=php_mbstring.dll
  54. ;extension=php_exif.dll      ; Must be after mbstring as it depends on it
  55. ;extension=php_mysql.dll
  56. ;extension=php_mysqli.dll

Última edición por hjorge01; 07/08/2013 a las 21:57