Website under construction
HOTLINE COMPLAINT: 015 365 222

BAMC FINANCE PLC.



Business Profile


BAMC is proud to have helped thousands of small businesses get the money they need to grow fast.  We have many alternative lending sources & funding options for almost  every individual – no matter the circumstances or credit history.

Contact Information


  • Hotline: 023 911 000
  • E-Mail: info@bamc.com.kh
  • Website: https://bamc.com.kh/
  • Address: #106,St.271, Phum Sansam Kosal5, Sangkat Boeng Tumpun 1, Khan Mean Chey, Phnom Penh, Phnom Penh, Cambodia
  • Facebook: https://www.facebook.com/profile.php?id=61558310991762

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