Mengatatasi Warning: PHP Startup: Unable to load dynamic library ‘oci8’

XAMPP - Oracle Driver Setup (v12)
Membutuhkan Driver :
Visual C++ Redistributable for Visual Studio

Instlasi
  • untuk PHP (32-Bit) open: Instant Client Downloads for Microsoft Windows 32-bit
  • untuk PHP (x64, 64-Bit) open: Instant Client Downloads for Microsoft Windows (x64) 64-bit
  • Klik : “Accept License Agreement”
  • Download and unzip the ZIP file instantclient-basiclite-nt-12.2.0.1.0.zip
  • Copy all *.dll files: to c:\xampp\php
  • Copy all *.dll files to c:\xampp\apache\bin (We need a second copy here for apache)
  • Make sure that the file c:\xampp\php\ext\php_oci8_12c.dll exists.
  • Enable php extension in php.ini: extension=php_oci8_12c.dll (For PHP 7.2+ use extension=oci8_12c)
  • Restart Apache

Dapat juga coba download php_oci8 dll dilink berikut ini:

Cara Mengatasi PHP Fatal error:  Uncaught ErrorException: count(): Parameter must be an array or an object that implements Countable

Cara Mengatasi PHP Fatal error: Uncaught ErrorException: count(): Parameter must be an array or an object that implements Countable

PHP Fatal error: Uncaught ErrorException: count(): Parameter must be an array or an object that implements Countable

Saat melakukan composer update pada Laravel 5.0 terjadi error tersebut maka bisa lakukan cara sebagai berikut :

  1.  cari file WindowsPipes.php pada folder vendor\symfony\process\Symfony\Component\Process\Pipes
  2. pada baris 222 if (null !== $w && 0 < count($r)) { ubah menjadi if (null !== $w && 0 < count( (array) $r)) {
Previous
Next

Terima kasih sudah mengunjungi website PusatAplikasi.Com

Cara Mengatasi 403 Invalid signature pada Laravel 6

Cara Mengatasi 403 Invalid signature pada Laravel 6

Cara Mengatasi 403 Invalid signature pada Laravel 6

Ketika melakukan verifikasi email pada laravel terjadi error 403 Invalid signature pada laravel maka lakukan hal berikut ini :

  1. pergilah ke folder app/Http/Middleware
  2. cari file bernama TrustProxies.php
  3. pada file tersebut ubahlah pada protected $proxies; menjadi protected $proxies = ‘*’;
Mengatasi 403 Invalid Signature Laravel 6 pada file TrustProxies.php

Semoga membantu jika ada kendala silahkan tinggalkan komentar dibawah !