2017-06-07 6 views
0

ich viele Male versucht haben, Couchbase Client mit diesem Tutorial zu installieren: http://trondn.blogspot.ro/2013/04/couchbase-php-xampp-and-windows.html ,, aber funktioniert nicht ,,Couchbase PHP-Erweiterung auf XAMPP unter Windows installieren 10

wenn ich Komponist Update ausführen bekomme ich die folgenden Fehler

PHP Warning: PHP Startup: Unable to load dynamic library 'C:\xampp\php\ext\php_couchbase.dll' - The specified module could not be found. 
in Unknown on line 0 

Warning: PHP Startup: Unable to load dynamic library 'C:\xampp\php\ext\php_couchbase.dll' - The specified module could not be found. 
in Unknown on line 0 
Loading composer repositories with package information 
Updating dependencies (including require-dev) 
Your requirements could not be resolved to an installable set of packages. 

    Problem 1 
    - ytake/laravel-couchbase 0.5.7 requires ext-couchbase ^2.2.2 -> the requested PHP extension couchbase is missing from your system. 
    - ytake/laravel-couchbase 0.5.6 requires ext-couchbase >=2.2.0 -> the requested PHP extension couchbase is missing from your system. 
    - ytake/laravel-couchbase 0.5.5 requires ext-couchbase >=2.2.0 -> the requested PHP extension couchbase is missing from your system. 
    - ytake/laravel-couchbase 0.5.3 requires ext-couchbase >=2.2.0 -> the requested PHP extension couchbase is missing from your system. 
    - ytake/laravel-couchbase 0.5.2 requires ext-couchbase >=2.2.0 -> the requested PHP extension couchbase is missing from your system. 
    - ytake/laravel-couchbase 0.5.1 requires ext-couchbase >=2.2.0 -> the requested PHP extension couchbase is missing from your system. 
    - Installation request for ytake/laravel-couchbase ^0.5 -> satisfiable by ytake/laravel-couchbase[0.5.1, 0.5.2, 0.5.3, 0.5.5, 0.5.6, 0.5.7]. 

was soll ich tun? Bitte Ich brauche Hilfe

+0

Vielleicht versuchen, einem neueren Tutorial zu folgen, wenn Sie einen finden können? –

+0

Ich habe andere Tutorials versucht, aber ohne Ergebnis –

+0

Wie wäre es mit der offiziellen Dokumentation? https://developer.couchbase.com/documentation/server/current/sdk/php/start-using-sdk.html –

Antwort

0

offizielles PHP SDK-Binaries für Windows auf https://developer.couchbase.com/server/other-products/release-notes-archives/php-sdk

veröffentlicht Stellen Sie sicher, php_couchbase.dll in Ihre Erweiterungen Verzeichnis setzen, und libcouchbase.dll in Ihr SAPI PATH (oder Prozess aktuelles Verzeichnis).

+0

SAPI PFAD? in welchem ​​Sinne? –

+0

Wenn SAPI versucht, eine Erweiterung zu laden, sieht der dynamische Linker, dass 'php_couchbase.dll' von' libcouchbase.dll' abhängt. Und dies wäre die nächste Bibliothek, die es zu laden versucht, aber da wir diesen Pfad nicht angeben können, sollte libbotchbase in PATH oder dem aktuellen Verzeichnis des SAPI verfügbar sein (dh wenn Sie CLI verwenden, sollte es in 'php.exe sein 'Verzeichnis). – avsej

+0

Ich habe es versucht, aber ohne Ergebnis :( –

Verwandte Themen