2016-09-17 1 views
1

Ich benutze Netbeans + Xampp + XdebugDie dynamische Bibliothek konnte nicht geladen werden. C: \ xampp \ php \ ext \ php_oci8_12c.dll. Das angegebene Modul konnte nicht gefunden werden

Ich habe folgende xdebug Konfiguration in php.ini einrichten

[XDebug] 
zend_extension = "C:\Program Files\PHP5\ext\php_xdebug-2.4.1-5.4-vc9-nts.dll" 

xdebug.default_enable=1 
xdebug.remote_mode=req 
xdebug.idekey="netbeans-xdebug" 
xdebug.remote_enable=1 
xdebug.remote_handler=dbgp 
xdebug.remote_host=127.0.0.1 
xdebug.remote_port=9000 
xdebug.remote_autostart=0 
xdebug.remote_connect_back=0 

mein c: \ xampp \ php-Ordner enthält alle erforderlich dlls

meine php_oci8_12c.dll Datei wird auch auf C gesetzt: \ xampp \ php \ ext

auf dem Neustart apache-Server von XAMPP. Ich erhalte diese Fehlerprotokoll auf Apache

[Sun Sep 18 01:49:21.075508 2016] [ssl:warn] [pid 9372:tid 540] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name 
[Sun Sep 18 01:49:21.191401 2016] [core:warn] [pid 9372:tid 540] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run? 
Failed loading C:\Program Files\PHP5\ext\php_xdebug-2.4.1-5.4-vc9-nts.dll 
ww.example.com:443:0 server certificate does NOT include an ID which matches the server name 
PHP Warning: PHP Startup: mysql: Unable to initialize module\nModule compiled with module API=20131226\nPHP compiled with module API=20151012\nThese options need to match\n in Unknown on line 0 
PHP Warning: PHP Startup: Unable to load dynamic library 'C:\\xampp\\php\\ext\\php_oci8_12c.dll' - The specified module could not be found.\r\n in Unknown on line 0 
[Sun Sep 18 01:49:21.360576 2016] [mpm_winnt:notice] [pid 9372:tid 540] AH00455: Apache/2.4.18 (Win32) OpenSSL/1.0.2e PHP/7.0.2 configured -- resuming normal operations 
[Sun Sep 18 01:49:21.360576 2016] [mpm_winnt:notice] [pid 9372:tid 540] AH00456: Apache Lounge VC14 Server built: Dec 9 2015 10:17:39 
[Sun Sep 18 01:49:21.360576 2016] [core:notice] [pid 9372:tid 540] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache' 
[Sun Sep 18 01:49:21.360576 2016] [mpm_winnt:notice] [pid 9372:tid 540] AH00418: Parent: Created child process 8204 
[Sun Sep 18 01:49:22.191842 2016] [ssl:warn] [pid 8204:tid 504] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name 
Failed loading C:\Program Files\PHP5\ext\php_xdebug-2.4.1-5.4-vc9-nts.dll 
ww.example.com:443:0 server certificate does NOT include an ID which matches the server name 
PHP Warning: PHP Startup: mysql: Unable to initialize module\nModule compiled with module API=20131226\nPHP compiled with module API=20151012\nThese options need to match\n in Unknown on line 0 
PHP Warning: PHP Startup: Unable to load dynamic library 'C:\\xampp\\php\\ext\\php_oci8_12c.dll' - The specified module could not be found.\r\n in Unknown on line 0 
[Sun Sep 18 01:49:22.494042 2016] [mpm_winnt:notice] [pid 8204:tid 504] AH00354: Child: Starting 150 worker threads. 
[Sun Sep 18 01:49:37.124565 2016] [ssl:warn] [pid 800:tid 420] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name 
[Sun Sep 18 01:49:37.240484 2016] [core:warn] [pid 800:tid 420] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run? 

meine php_xdebug-2.4.1-5.4-VC9-nts.dll Datei in ordnungsgemäß an Ort und Stelle sind

C: \ Programme \ PHP \ v5.6 Ordner

Meine url auch attech xdeug Weg feinen wie: http://localhost/wordpress/?XDEBUG_SESSION_START=netbeans-xdebug

Man gab Post eine Lösung der ICU * .dll-Dateien auf Ihrem Apache-bin-Verzeichnis zu bewegen .. aber sie sind schon da was Dieses Fehlerprotokoll sagt mir, dass ich vermisse? bitte vorschlagen . Grüße

Antwort

0

Dies könnte das Problem des Ports apache sein.

Versuchen Sie diese Schritte.

  1. Wenn Sie Skype verwenden, deaktivieren Sie es.
  2. Versuchen xampp als Administrator
  3. öffnen xampp und klicken Sie auf Config dann auf Dienstleistungen & Ports Einstellungen zu starten. Ändern Sie den Hauptport 80 zu 8080 und den SSL-Port 443 zu 4433. Speichern und anschließend neu starten xampp
  4. Sie können auch die Standardeinstellungen für den Anschluss apache ändern, indem Sie .config Dateien bearbeiten. Um dies zu tun folgen die folgenden Schritte
    • öffnen xampp Klick auf Config Taste und wählen Sie httpd.conf. Jetzt wird dies mit dem Editor geöffnet. Suchen Sie nun Listen 80 und ändern Sie dies in Listen 8080
    • Nach dieser Suche nach ServerName localhost:80 und ändern Sie es in ServerName localhost:8080
    • Speichern und beenden.
    • Klicken Sie erneut auf Config und wählen Sie httpd-ssl.conf. Suchen Sie nach Listen 443, <VirtualHost _default_:443> und ServerName www.example.com:443 ändern Sie 443 zu 4433 speichern und beenden.
    • Und schließlich neu starten Sie Ihre xampp.

Hinweis: Wenn Sie Standard-Port-Adresse ändern, es ist notwendig, die Portnummer unter apache zu erwähnen läuft. Verwenden Sie zum Beispiel in Ihrem Browser http://localhost:8080/project_name/index.php

Verwandte Themen