+ Antworten
Ergebnis 1 bis 2 von 2

Thema: PHP und MySQL installation

  1. #1
    TP-Senior BRIX macht alles soweit korrekt
    Registriert seit
    Dec 2002
    Ort
    Gernsbach
    Beiträge
    192

    PHP und MySQL installation

    Hi @ll,

    bin gerade dabei eine Testumgebung mit einem iis6.0 aufzubauen. Funktioniert alles hervorragend, habe allerdings Probleme mit MySQL.

    PhP Version: 5.0.4
    MySQL Version: 4.1.12

    Folgende Fehlermeldung bekomme ich wenn ich versuche über PHPADMIN eine Datenbankverbindung mit der Testdatenbank aufzubauen.
    Code:
    Die MySQL-Erweiterung konnte nicht geladen werden. Bitte überprüfen Sie Ihre PHP-Konfiguration!
    Da ich ja in der php.ini etwas ändern muss, habe ich mir diese in einem Texteditor geöffnet, finde aber die Stelle nicht, welche geändert werden soll.
    Folgendes habe ich in der php.ini mit MySQL gefunden:
    PHP-Code:
    [MySQL]
    Allow or prevent persistent links.
    mysql.allow_persistent On

    Maximum number of persistent links.  -1 means no limit.
    mysql.max_persistent = -1

    Maximum number of links (persistent non-persistent).  -1 means no limit.
    mysql.max_links = -1

    ; Default port number for mysql_connect().  If unset, mysql_connect() will use
    the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
    at MYSQL_PORT.
    mysql.default_port 

    ; Default 
    socket name for local MySQL connects.  If empty, uses the built-in
    MySQL defaults.
    mysql.default_socket =

    ; Default 
    host for mysql_connect() (doesn't apply in safe mode).
    mysql.default_host =

    ; Default user for mysql_connect() (doesn'
    t apply in safe mode).
    mysql.default_user =

    ; Default 
    password for mysql_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run '
    echo get_cfg_var("mysql.default_password")
    ; and 
    reveal this password!  And of courseany users with read access to this
    file will be able to reveal the password as well.
    mysql.default_password =

    Maximum time (in secondes) for connect timeout. -1 means no limit
    mysql
    .connect_timeout 60

    Trace modeWhen trace_mode is active (=On), warnings for table/index scans and
    SQL-Errors will be displayed.
    mysql.trace_mode Off

    [MySQLI]

    Maximum number of links.  -1 means no limit.
    mysqli.max_links = -1

    ; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
    the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
    at MYSQL_PORT.
    mysqli.default_port 3306

    ; Default socket name for local MySQL connects.  If empty, uses the built-in
    MySQL defaults.
    mysqli.default_socket =

    ; Default 
    host for mysql_connect() (doesn't apply in safe mode).
    mysqli.default_host =

    ; Default user for mysql_connect() (doesn'
    t apply in safe mode).
    mysqli.default_user =

    ; Default 
    password for mysqli_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run '
    echo get_cfg_var("mysqli.default_password")
    ; and 
    reveal this password!  And of courseany users with read access to this
    file will be able to reveal the password as well.
    mysqli.default_password =

    Allow or prevent reconnect
    mysqli
    .reconnect Off 
    Wer weiss hier Rat?

    Gruß Brix.
    ------------------------------------------
    Protestseite für besseren Tierschutz

  2. #2
    TP-Senior BRIX macht alles soweit korrekt
    Registriert seit
    Dec 2002
    Ort
    Gernsbach
    Beiträge
    192
    Hat sich erledigt. War nur ein ";" zuviel.

    Gruß Brix
    ------------------------------------------
    Protestseite für besseren Tierschutz

+ Antworten

Aktive Benutzer

Aktive Benutzer

Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)

     

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51