Website under construction
HOTLINE COMPLAINT: 015 365 222

CAMFUND PRATHNA PLC.



Business Profile


CAMFUND PRATHNA PLC.

Contact Information


  • E-Mail: prathnafn@gmail.com
  • Website: https://kh77818-camfund-prathna-plc.contact.page/
  • Address: St. 8BT, Sangkat Boeng Tompon1, Khan Mean Chey, Phnom Penh , Phnom Penh, Cambodia
  • Facebook: https://www.facebook.com/profile.php?id=100063480916138

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);