Website under construction
HOTLINE COMPLAINT: 015 365 222

Vivath Golden Finance PLC.



Business Profile


VIVATH GOLDEN FINANCE PLC. is Microfinance institution who obtains a license from the National Bank to operate on financial services via standard   lending    Small  to   medium from rural and      urban communities are aimed to improving their livelihoods and improving their jobs.

Contact Information


  • Hotline: 023 234 599
  • E-Mail: hrd@vivathgolden-financeplc.com.kh
  • Website: https://www.vivathgolden-financeplc.com.kh/
  • Address: Building #659, St371 Mol Village, Dang Kao Commune, Dang Kao District, Phnom Penh, Cambodia
  • Facebook: https://www.facebook.com/Vivath.Golden.Finance.Plc

Subscribe to our newsletter

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

ob_end_flush(): Failed to send buffer of zlib output compression (1)

ErrorException

Show exception properties
0 of 0
ErrorException {#150 #severity: E_NOTICE }
  1.         $level \count($status);
  2.         $flags \PHP_OUTPUT_HANDLER_REMOVABLE | ($flush \PHP_OUTPUT_HANDLER_FLUSHABLE \PHP_OUTPUT_HANDLER_CLEANABLE);
  3.         while ($level-- > $targetLevel && ($s $status[$level]) && (!isset($s['del']) ? !isset($s['flags']) || ($s['flags'] & $flags) === $flags $s['del'])) {
  4.             if ($flush) {
  5.                 ob_end_flush();
  6.             } else {
  7.                 ob_end_clean();
  8.             }
  9.         }
  10.     }
  1.      * @return callable
  2.      */
  3.     protected function forwardsTo($method)
  4.     {
  5.         return fn (...$arguments) => static::$app
  6.             $this->{$method}(...$arguments)
  7.             : false;
  8.     }
  9.     /**
  10.      * Determine if the error level is a deprecation.
HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}()
  1.         $level \count($status);
  2.         $flags \PHP_OUTPUT_HANDLER_REMOVABLE | ($flush \PHP_OUTPUT_HANDLER_FLUSHABLE \PHP_OUTPUT_HANDLER_CLEANABLE);
  3.         while ($level-- > $targetLevel && ($s $status[$level]) && (!isset($s['del']) ? !isset($s['flags']) || ($s['flags'] & $flags) === $flags $s['del'])) {
  4.             if ($flush) {
  5.                 ob_end_flush();
  6.             } else {
  7.                 ob_end_clean();
  8.             }
  9.         }
  10.     }
  1.         if (\function_exists('fastcgi_finish_request')) {
  2.             fastcgi_finish_request();
  3.         } elseif (\function_exists('litespeed_finish_request')) {
  4.             litespeed_finish_request();
  5.         } elseif (!\in_array(\PHP_SAPI, ['cli''phpdbg''embed'], true)) {
  6.             static::closeOutputBuffers(0true);
  7.             flush();
  8.         }
  9.         return $this;
  10.     }
  1. $kernel $app->make(Kernel::class);
  2. $response $kernel->handle(
  3.     $request Request::capture()
  4. )->send();
  5. $kernel->terminate($request$response);