ErrorException

HTTP 500 Whoops, looks like something went wrong.

fopen(/home/gensec/web/gensec.com.ua/public_html/storage/cache/df/ba/dfba7aade0868074c2861c98e2a9a92f3178a51b): failed to open stream: No such file or directory

Exception

ErrorException

  1.      * @return string
  2.      */
  3.     public function sharedGet(string $path)
  4.     {
  5.         $contents '';
  6.         $handle fopen($path'rb');
  7.         if ($handle) {
  8.             //  try {
  9.             if (flock($handleLOCK_SH)) {
  10.                 clearstatcache(true$path);
  11.                 $contents fread($handle$this->size($path) ?: 1);
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1.      * @return string
  2.      */
  3.     public function sharedGet(string $path)
  4.     {
  5.         $contents '';
  6.         $handle fopen($path'rb');
  7.         if ($handle) {
  8.             //  try {
  9.             if (flock($handleLOCK_SH)) {
  10.                 clearstatcache(true$path);
  11.                 $contents fread($handle$this->size($path) ?: 1);
  1.      * @throws Exception
  2.      */
  3.     public function get(string $pathbool $lock false)
  4.     {
  5.         if ($this->isFile($path)) {
  6.             return $lock $this->sharedGet($path) : file_get_contents($path);
  7.         }
  8.         throw new Exception("File does not exist at path {$path}");
  9.     }
  10.     /**
  1.         // If the file doesn't exist, we obviously cannot return the cache so we will
  2.         // just return null. Otherwise, we'll get the contents of the file and get
  3.         // the expiration UNIX timestamps from the start of the file's contents.
  4.         try {
  5.             $expire substr(
  6.                 $contents $this->files->get($pathtrue),
  7.                 0,
  8.                 10
  9.             );
  10.         } catch (Exception $e) {
  11.             return $this->emptyPayload();
  1.      * Retrieve an item from the cache by key.
  2.      * @param string|array $key
  3.      */
  4.     public function get($key)
  5.     {
  6.         return $this->getPayload($key)['data'] ?? null;
  7.     }
  8.     /**
  9.      * Store an item in the cache for a given number of seconds.
  10.      * @param string $key
  1.     {
  2.         if (is_array($key)) {
  3.             return $this->many($key);
  4.         }
  5.         $value $this->store->get($this->itemKey($key));
  6.         // If we could not find the cache value, we will fire the missed event and get
  7.         // the default value for this cache value. This default could be a callback
  8.         // so we will execute the value function which will resolve it if needed.
  9.         if (is_null($value)) {
  1.      * @param Closure $callback
  2.      * @return mixed
  3.      */
  4.     public function remember($key$ttlClosure $callback)
  5.     {
  6.         $value $this->get($key);
  7.         // If the item exists in the cache we will just return this immediately and if
  8.         // not we will execute the given Closure and cache the result of that for a
  9.         // given number of seconds so it's available for all subsequent requests.
  10.         if (!is_null($value)) {
  1.     public static function remember(string $key, \Closure $closure$ttl 60 5)
  2.     {
  3.         try {
  4.             return self::getRepository()
  5.                 ->remember(
  6.                     $key,
  7.                     $ttl,
  8.                     $closure
  9.                 );
  10.         } catch (\Exception $exception) {
  11.             Log::critical($exception->getMessage(), [
  1. $configurations FileCacheHelper::remember(
  2.     'config',
  3.     fn() => tep_db_query(
  4.         'select configuration_key as cfgKey, configuration_value as cfgValue from ' TABLE_CONFIGURATION
  5.     )->fetch_all(MYSQLI_ASSOC)
  6. );
  7. foreach ($configurations as $configuration) {
  8.     $check_modules_folders explode(':'$configuration['cfgValue']);
  9.     if (
  10.         count(
require_once('/home/gensec/web/gensec.com.ua/public_html/includes/application_main.php') in /home/gensec/web/gensec.com.ua/public_html/includes/application_top.php (line 8)
  1. define('PAGE_PARSE_START_TIME'microtime(true));
  2. define("SECONDS_PER_WEEK"604800);
  3. header("Content-Security-Policy: default-src data: * 'unsafe-inline' 'unsafe-eval'; frame-ancestors 'none';");
  4. $saveDbPrepareInput = [];
  5. require_once __DIR__ "/application_main.php";
  6. //redirect to a new domain name
  7. if(getConstantValue('DOMEN_URL','') != '' && getConstantValue('DOMEN_URL') != $_SERVER['HTTP_HOST']){
  8.     header('Location: http://' getConstantValue('DOMEN_URL'));
  9.     exit();
  10. }
require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php') in /home/gensec/web/gensec.com.ua/public_html/product_info.php (line 8)
  1. use JsonLd\Container;
  2. use JsonLd\Product;
  3. use JsonLd\ProductReview;
  4. require('includes/application_top.php');
  5. includeLanguages(DIR_WS_LANGUAGES $language '/' FILENAME_PRODUCT_INFO);
  6. // define current template constants:
  7. $productAvailable false;
  8. $productReviewsArr = [];

Stack Trace

ErrorException
ErrorException:
fopen(/home/gensec/web/gensec.com.ua/public_html/storage/cache/df/ba/dfba7aade0868074c2861c98e2a9a92f3178a51b): failed to open stream: No such file or directory

  at /home/gensec/web/gensec.com.ua/public_html/app/Classes/Filesystem/Filesystem.php:50
  at Bootstrap\HandleExceptions->handleError()
     (/home/gensec/web/gensec.com.ua/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at fopen()
     (/home/gensec/web/gensec.com.ua/public_html/app/Classes/Filesystem/Filesystem.php:50)
  at App\Classes\Filesystem\Filesystem->sharedGet()
     (/home/gensec/web/gensec.com.ua/public_html/app/Classes/Filesystem/Filesystem.php:38)
  at App\Classes\Filesystem\Filesystem->get()
     (/home/gensec/web/gensec.com.ua/public_html/app/Classes/Cache/Store/FileStore.php:200)
  at App\Classes\Cache\Store\FileStore->getPayload()
     (/home/gensec/web/gensec.com.ua/public_html/app/Classes/Cache/Store/FileStore.php:46)
  at App\Classes\Cache\Store\FileStore->get()
     (/home/gensec/web/gensec.com.ua/public_html/app/Classes/Cache/Repository.php:65)
  at App\Classes\Cache\Repository->get()
     (/home/gensec/web/gensec.com.ua/public_html/app/Classes/Cache/Repository.php:319)
  at App\Classes\Cache\Repository->remember()
     (/home/gensec/web/gensec.com.ua/public_html/app/Classes/Cache/Helpers/FileCacheHelper.php:154)
  at App\Classes\Cache\Helpers\FileCacheHelper::remember()
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_main.php:32)
  at require_once('/home/gensec/web/gensec.com.ua/public_html/includes/application_main.php')
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:8)
  at require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php')
     (/home/gensec/web/gensec.com.ua/public_html/product_info.php:8)                
session_set_save_handler(): Cannot change save handler when headers already sent (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

session_set_save_handler(): Cannot change save handler when headers already sent

Exception

ErrorException

  1.         tep_db_query("delete from " TABLE_SESSIONS " where expiry < '" time() . "'");
  2.         return true;
  3.     }
  4.     session_set_save_handler('_sess_open''_sess_close''_sess_read''_sess_write''_sess_destroy''_sess_gc');
  5. }
  6. function tep_session_start()
  7. {
  8.     global $SESS_LIFE$_GET$_POST$_COOKIE;
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1.         tep_db_query("delete from " TABLE_SESSIONS " where expiry < '" time() . "'");
  2.         return true;
  3.     }
  4.     session_set_save_handler('_sess_open''_sess_close''_sess_read''_sess_write''_sess_destroy''_sess_gc');
  5. }
  6. function tep_session_start()
  7. {
  8.     global $SESS_LIFE$_GET$_POST$_COOKIE;
require_once('/home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php') in /home/gensec/web/gensec.com.ua/public_html/includes/application_top.php (line 153)
  1. // set the cookie domain
  2. $cookie_domain HTTP_COOKIE_DOMAIN;
  3. $cookie_path HTTP_COOKIE_PATH;
  4. require_once DIR_WS_FUNCTIONS 'sessions.php';
  5. require_once DIR_WS_MODULES 'user_redirects.php';
  6. // set the session name and save path
  7. tep_session_name('osCsid');
require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php') in /home/gensec/web/gensec.com.ua/public_html/product_info.php (line 8)
  1. use JsonLd\Container;
  2. use JsonLd\Product;
  3. use JsonLd\ProductReview;
  4. require('includes/application_top.php');
  5. includeLanguages(DIR_WS_LANGUAGES $language '/' FILENAME_PRODUCT_INFO);
  6. // define current template constants:
  7. $productAvailable false;
  8. $productReviewsArr = [];

Stack Trace

ErrorException
ErrorException:
session_set_save_handler(): Cannot change save handler when headers already sent

  at /home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php:77
  at Bootstrap\HandleExceptions->handleError()
     (/home/gensec/web/gensec.com.ua/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at session_set_save_handler()
     (/home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php:77)
  at require_once('/home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php')
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:153)
  at require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php')
     (/home/gensec/web/gensec.com.ua/public_html/product_info.php:8)                
session_name(): Cannot change session name when headers already sent (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

session_name(): Cannot change session name when headers already sent

Exception

ErrorException

  1. }
  2. function tep_session_name($name '')
  3. {
  4.     if (!empty($name)) {
  5.         return session_name($name);
  6.     } else {
  7.         return session_name();
  8.     }
  9. }
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1. }
  2. function tep_session_name($name '')
  3. {
  4.     if (!empty($name)) {
  5.         return session_name($name);
  6.     } else {
  7.         return session_name();
  8.     }
  9. }
  1. require_once DIR_WS_FUNCTIONS 'sessions.php';
  2. require_once DIR_WS_MODULES 'user_redirects.php';
  3. // set the session name and save path
  4. tep_session_name('osCsid');
  5. tep_session_save_path(SESSION_WRITE_DIRECTORY);
  6. // set the session cookie parameters
  7. if (function_exists('session_set_cookie_params')) {
  8.     $secure getConstantValue('SET_HTTPS') === 'true' true false;
require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php') in /home/gensec/web/gensec.com.ua/public_html/product_info.php (line 8)
  1. use JsonLd\Container;
  2. use JsonLd\Product;
  3. use JsonLd\ProductReview;
  4. require('includes/application_top.php');
  5. includeLanguages(DIR_WS_LANGUAGES $language '/' FILENAME_PRODUCT_INFO);
  6. // define current template constants:
  7. $productAvailable false;
  8. $productReviewsArr = [];

Stack Trace

ErrorException
ErrorException:
session_name(): Cannot change session name when headers already sent

  at /home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php:162
  at Bootstrap\HandleExceptions->handleError()
     (/home/gensec/web/gensec.com.ua/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at session_name()
     (/home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php:162)
  at tep_session_name()
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:158)
  at require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php')
     (/home/gensec/web/gensec.com.ua/public_html/product_info.php:8)                
session_set_cookie_params(): Cannot change session cookie parameters when headers already sent (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

session_set_cookie_params(): Cannot change session cookie parameters when headers already sent

Exception

ErrorException

  1. tep_session_save_path(SESSION_WRITE_DIRECTORY);
  2. // set the session cookie parameters
  3. if (function_exists('session_set_cookie_params')) {
  4.     $secure getConstantValue('SET_HTTPS') === 'true' true false;
  5.     session_set_cookie_params(time() - 3600$cookie_path ';SameSite=Lax'$cookie_domain$securetrue);
  6. } elseif (function_exists('ini_set')) {
  7.     ini_set('session.cookie_lifetime''0');
  8.     ini_set('session.cookie_path'$cookie_path);
  9.     ini_set('session.cookie_domain'$cookie_domain);
  10. }
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1. tep_session_save_path(SESSION_WRITE_DIRECTORY);
  2. // set the session cookie parameters
  3. if (function_exists('session_set_cookie_params')) {
  4.     $secure getConstantValue('SET_HTTPS') === 'true' true false;
  5.     session_set_cookie_params(time() - 3600$cookie_path ';SameSite=Lax'$cookie_domain$securetrue);
  6. } elseif (function_exists('ini_set')) {
  7.     ini_set('session.cookie_lifetime''0');
  8.     ini_set('session.cookie_path'$cookie_path);
  9.     ini_set('session.cookie_domain'$cookie_domain);
  10. }
require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php') in /home/gensec/web/gensec.com.ua/public_html/product_info.php (line 8)
  1. use JsonLd\Container;
  2. use JsonLd\Product;
  3. use JsonLd\ProductReview;
  4. require('includes/application_top.php');
  5. includeLanguages(DIR_WS_LANGUAGES $language '/' FILENAME_PRODUCT_INFO);
  6. // define current template constants:
  7. $productAvailable false;
  8. $productReviewsArr = [];

Stack Trace

ErrorException
ErrorException:
session_set_cookie_params(): Cannot change session cookie parameters when headers already sent

  at /home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:164
  at Bootstrap\HandleExceptions->handleError()
     (/home/gensec/web/gensec.com.ua/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at session_set_cookie_params()
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:164)
  at require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php')
     (/home/gensec/web/gensec.com.ua/public_html/product_info.php:8)                
ini_set(): Headers already sent. You cannot change the session module's ini settings at this time (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

ini_set(): Headers already sent. You cannot change the session module's ini settings at this time

Exception

ErrorException

  1. }
  2. function tep_session_start()
  3. {
  4.     global $SESS_LIFE$_GET$_POST$_COOKIE;
  5.     ini_set('session.gc_probability''1');
  6.     ini_set('session.gc_divisor''100');
  7.     ini_set('session.gc_maxlifetime'$SESS_LIFE);
  8.     $sane_session_id true;
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1. }
  2. function tep_session_start()
  3. {
  4.     global $SESS_LIFE$_GET$_POST$_COOKIE;
  5.     ini_set('session.gc_probability''1');
  6.     ini_set('session.gc_divisor''100');
  7.     ini_set('session.gc_maxlifetime'$SESS_LIFE);
  8.     $sane_session_id true;
  1.             die;  // Don't send any more output.
  2.         }
  3.         // END HACK
  4.         if ($spider_flag == false) {
  5.             tep_session_start();
  6.             $session_started true;
  7.         }
  8.     } else {
  9.         tep_session_start();
  10.         $session_started true;
require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php') in /home/gensec/web/gensec.com.ua/public_html/product_info.php (line 8)
  1. use JsonLd\Container;
  2. use JsonLd\Product;
  3. use JsonLd\ProductReview;
  4. require('includes/application_top.php');
  5. includeLanguages(DIR_WS_LANGUAGES $language '/' FILENAME_PRODUCT_INFO);
  6. // define current template constants:
  7. $productAvailable false;
  8. $productReviewsArr = [];

Stack Trace

ErrorException
ErrorException:
ini_set(): Headers already sent. You cannot change the session module's ini settings at this time

  at /home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php:83
  at Bootstrap\HandleExceptions->handleError()
     (/home/gensec/web/gensec.com.ua/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at ini_set()
     (/home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php:83)
  at tep_session_start()
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:221)
  at require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php')
     (/home/gensec/web/gensec.com.ua/public_html/product_info.php:8)                
ini_set(): Headers already sent. You cannot change the session module's ini settings at this time (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

ini_set(): Headers already sent. You cannot change the session module's ini settings at this time

Exception

ErrorException

  1. function tep_session_start()
  2. {
  3.     global $SESS_LIFE$_GET$_POST$_COOKIE;
  4.     ini_set('session.gc_probability''1');
  5.     ini_set('session.gc_divisor''100');
  6.     ini_set('session.gc_maxlifetime'$SESS_LIFE);
  7.     $sane_session_id true;
  8.     if (isset($_GET[tep_session_name()])) {
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1. function tep_session_start()
  2. {
  3.     global $SESS_LIFE$_GET$_POST$_COOKIE;
  4.     ini_set('session.gc_probability''1');
  5.     ini_set('session.gc_divisor''100');
  6.     ini_set('session.gc_maxlifetime'$SESS_LIFE);
  7.     $sane_session_id true;
  8.     if (isset($_GET[tep_session_name()])) {
  1.             die;  // Don't send any more output.
  2.         }
  3.         // END HACK
  4.         if ($spider_flag == false) {
  5.             tep_session_start();
  6.             $session_started true;
  7.         }
  8.     } else {
  9.         tep_session_start();
  10.         $session_started true;
require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php') in /home/gensec/web/gensec.com.ua/public_html/product_info.php (line 8)
  1. use JsonLd\Container;
  2. use JsonLd\Product;
  3. use JsonLd\ProductReview;
  4. require('includes/application_top.php');
  5. includeLanguages(DIR_WS_LANGUAGES $language '/' FILENAME_PRODUCT_INFO);
  6. // define current template constants:
  7. $productAvailable false;
  8. $productReviewsArr = [];

Stack Trace

ErrorException
ErrorException:
ini_set(): Headers already sent. You cannot change the session module's ini settings at this time

  at /home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php:84
  at Bootstrap\HandleExceptions->handleError()
     (/home/gensec/web/gensec.com.ua/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at ini_set()
     (/home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php:84)
  at tep_session_start()
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:221)
  at require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php')
     (/home/gensec/web/gensec.com.ua/public_html/product_info.php:8)                
ini_set(): Headers already sent. You cannot change the session module's ini settings at this time (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

ini_set(): Headers already sent. You cannot change the session module's ini settings at this time

Exception

ErrorException

  1. function tep_session_start()
  2. {
  3.     global $SESS_LIFE$_GET$_POST$_COOKIE;
  4.     ini_set('session.gc_probability''1');
  5.     ini_set('session.gc_divisor''100');
  6.     ini_set('session.gc_maxlifetime'$SESS_LIFE);
  7.     $sane_session_id true;
  8.     if (isset($_GET[tep_session_name()])) {
  9.         if (preg_match('/^[a-zA-Z0-9]+$/'$_GET[tep_session_name()]) == false) {
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1. function tep_session_start()
  2. {
  3.     global $SESS_LIFE$_GET$_POST$_COOKIE;
  4.     ini_set('session.gc_probability''1');
  5.     ini_set('session.gc_divisor''100');
  6.     ini_set('session.gc_maxlifetime'$SESS_LIFE);
  7.     $sane_session_id true;
  8.     if (isset($_GET[tep_session_name()])) {
  9.         if (preg_match('/^[a-zA-Z0-9]+$/'$_GET[tep_session_name()]) == false) {
  1.             die;  // Don't send any more output.
  2.         }
  3.         // END HACK
  4.         if ($spider_flag == false) {
  5.             tep_session_start();
  6.             $session_started true;
  7.         }
  8.     } else {
  9.         tep_session_start();
  10.         $session_started true;
require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php') in /home/gensec/web/gensec.com.ua/public_html/product_info.php (line 8)
  1. use JsonLd\Container;
  2. use JsonLd\Product;
  3. use JsonLd\ProductReview;
  4. require('includes/application_top.php');
  5. includeLanguages(DIR_WS_LANGUAGES $language '/' FILENAME_PRODUCT_INFO);
  6. // define current template constants:
  7. $productAvailable false;
  8. $productReviewsArr = [];

Stack Trace

ErrorException
ErrorException:
ini_set(): Headers already sent. You cannot change the session module's ini settings at this time

  at /home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php:85
  at Bootstrap\HandleExceptions->handleError()
     (/home/gensec/web/gensec.com.ua/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at ini_set()
     (/home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php:85)
  at tep_session_start()
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:221)
  at require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php')
     (/home/gensec/web/gensec.com.ua/public_html/product_info.php:8)                
session_start(): Cannot start session when headers already sent (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

session_start(): Cannot start session when headers already sent

Exception

ErrorException

  1.     if ($sane_session_id == false) {
  2.         tep_redirect(tep_href_link('/''''NONSSL'false));
  3.     }
  4.     return session_start();
  5. }
  6. function tep_session_register($variable)
  7. {
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1.     if ($sane_session_id == false) {
  2.         tep_redirect(tep_href_link('/''''NONSSL'false));
  3.     }
  4.     return session_start();
  5. }
  6. function tep_session_register($variable)
  7. {
  1.             die;  // Don't send any more output.
  2.         }
  3.         // END HACK
  4.         if ($spider_flag == false) {
  5.             tep_session_start();
  6.             $session_started true;
  7.         }
  8.     } else {
  9.         tep_session_start();
  10.         $session_started true;
require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php') in /home/gensec/web/gensec.com.ua/public_html/product_info.php (line 8)
  1. use JsonLd\Container;
  2. use JsonLd\Product;
  3. use JsonLd\ProductReview;
  4. require('includes/application_top.php');
  5. includeLanguages(DIR_WS_LANGUAGES $language '/' FILENAME_PRODUCT_INFO);
  6. // define current template constants:
  7. $productAvailable false;
  8. $productReviewsArr = [];

Stack Trace

ErrorException
ErrorException:
session_start(): Cannot start session when headers already sent

  at /home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php:117
  at Bootstrap\HandleExceptions->handleError()
     (/home/gensec/web/gensec.com.ua/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at session_start()
     (/home/gensec/web/gensec.com.ua/public_html/includes/functions/sessions.php:117)
  at tep_session_start()
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:221)
  at require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php')
     (/home/gensec/web/gensec.com.ua/public_html/product_info.php:8)                
Cannot modify header information - headers already sent by (output started at /home/gensec/web/gensec.com.ua/public_html/app/Exceptions/Handler/Handler.php:106) (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

Cannot modify header information - headers already sent by (output started at /home/gensec/web/gensec.com.ua/public_html/app/Exceptions/Handler/Handler.php:106)

Exception

ErrorException

  1. if (!isset($_COOKIE['isMobile'])) {
  2.     require_once DIR_WS_CLASSES "MobileDetect.php";
  3.     $detect = new MobileDetect();
  4.     $detect->getBrowsers();
  5.     setcookie("isMobile"$detect->isMobile() ? 0time() + 60 60 24'/');
  6.     $isiOS $detect->isiOS() ? 0;
  7.     $isiOS strpos($_SERVER['HTTP_USER_AGENT'], 'Mac OS') !== false $isiOS;
  8.     setcookie("isiOS"$isiOStime() + 60 60 24'/');
  9.     setcookie("isSafari"$detect->is('Safari') ? 0time() + 60 60 24'/');
  10. }
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1. if (!isset($_COOKIE['isMobile'])) {
  2.     require_once DIR_WS_CLASSES "MobileDetect.php";
  3.     $detect = new MobileDetect();
  4.     $detect->getBrowsers();
  5.     setcookie("isMobile"$detect->isMobile() ? 0time() + 60 60 24'/');
  6.     $isiOS $detect->isiOS() ? 0;
  7.     $isiOS strpos($_SERVER['HTTP_USER_AGENT'], 'Mac OS') !== false $isiOS;
  8.     setcookie("isiOS"$isiOStime() + 60 60 24'/');
  9.     setcookie("isSafari"$detect->is('Safari') ? 0time() + 60 60 24'/');
  10. }
require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php') in /home/gensec/web/gensec.com.ua/public_html/product_info.php (line 8)
  1. use JsonLd\Container;
  2. use JsonLd\Product;
  3. use JsonLd\ProductReview;
  4. require('includes/application_top.php');
  5. includeLanguages(DIR_WS_LANGUAGES $language '/' FILENAME_PRODUCT_INFO);
  6. // define current template constants:
  7. $productAvailable false;
  8. $productReviewsArr = [];

Stack Trace

ErrorException
ErrorException:
Cannot modify header information - headers already sent by (output started at /home/gensec/web/gensec.com.ua/public_html/app/Exceptions/Handler/Handler.php:106)

  at /home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:447
  at Bootstrap\HandleExceptions->handleError()
     (/home/gensec/web/gensec.com.ua/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at setcookie()
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:447)
  at require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php')
     (/home/gensec/web/gensec.com.ua/public_html/product_info.php:8)                
Cannot modify header information - headers already sent by (output started at /home/gensec/web/gensec.com.ua/public_html/app/Exceptions/Handler/Handler.php:106) (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

Cannot modify header information - headers already sent by (output started at /home/gensec/web/gensec.com.ua/public_html/app/Exceptions/Handler/Handler.php:106)

Exception

ErrorException

  1.     $detect = new MobileDetect();
  2.     $detect->getBrowsers();
  3.     setcookie("isMobile"$detect->isMobile() ? 0time() + 60 60 24'/');
  4.     $isiOS $detect->isiOS() ? 0;
  5.     $isiOS strpos($_SERVER['HTTP_USER_AGENT'], 'Mac OS') !== false $isiOS;
  6.     setcookie("isiOS"$isiOStime() + 60 60 24'/');
  7.     setcookie("isSafari"$detect->is('Safari') ? 0time() + 60 60 24'/');
  8. }
  9. // include the language translations
  10. define('OG_LOCALE'$language '_' strtoupper($language));
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1.     $detect = new MobileDetect();
  2.     $detect->getBrowsers();
  3.     setcookie("isMobile"$detect->isMobile() ? 0time() + 60 60 24'/');
  4.     $isiOS $detect->isiOS() ? 0;
  5.     $isiOS strpos($_SERVER['HTTP_USER_AGENT'], 'Mac OS') !== false $isiOS;
  6.     setcookie("isiOS"$isiOStime() + 60 60 24'/');
  7.     setcookie("isSafari"$detect->is('Safari') ? 0time() + 60 60 24'/');
  8. }
  9. // include the language translations
  10. define('OG_LOCALE'$language '_' strtoupper($language));
require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php') in /home/gensec/web/gensec.com.ua/public_html/product_info.php (line 8)
  1. use JsonLd\Container;
  2. use JsonLd\Product;
  3. use JsonLd\ProductReview;
  4. require('includes/application_top.php');
  5. includeLanguages(DIR_WS_LANGUAGES $language '/' FILENAME_PRODUCT_INFO);
  6. // define current template constants:
  7. $productAvailable false;
  8. $productReviewsArr = [];

Stack Trace

ErrorException
ErrorException:
Cannot modify header information - headers already sent by (output started at /home/gensec/web/gensec.com.ua/public_html/app/Exceptions/Handler/Handler.php:106)

  at /home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:450
  at Bootstrap\HandleExceptions->handleError()
     (/home/gensec/web/gensec.com.ua/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at setcookie()
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:450)
  at require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php')
     (/home/gensec/web/gensec.com.ua/public_html/product_info.php:8)                
Cannot modify header information - headers already sent by (output started at /home/gensec/web/gensec.com.ua/public_html/app/Exceptions/Handler/Handler.php:106) (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

Cannot modify header information - headers already sent by (output started at /home/gensec/web/gensec.com.ua/public_html/app/Exceptions/Handler/Handler.php:106)

Exception

ErrorException

  1.     $detect->getBrowsers();
  2.     setcookie("isMobile"$detect->isMobile() ? 0time() + 60 60 24'/');
  3.     $isiOS $detect->isiOS() ? 0;
  4.     $isiOS strpos($_SERVER['HTTP_USER_AGENT'], 'Mac OS') !== false $isiOS;
  5.     setcookie("isiOS"$isiOStime() + 60 60 24'/');
  6.     setcookie("isSafari"$detect->is('Safari') ? 0time() + 60 60 24'/');
  7. }
  8. // include the language translations
  9. define('OG_LOCALE'$language '_' strtoupper($language));
  10. @setlocale(LC_TIMEOG_LOCALE '.UTF-8');
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1.     $detect->getBrowsers();
  2.     setcookie("isMobile"$detect->isMobile() ? 0time() + 60 60 24'/');
  3.     $isiOS $detect->isiOS() ? 0;
  4.     $isiOS strpos($_SERVER['HTTP_USER_AGENT'], 'Mac OS') !== false $isiOS;
  5.     setcookie("isiOS"$isiOStime() + 60 60 24'/');
  6.     setcookie("isSafari"$detect->is('Safari') ? 0time() + 60 60 24'/');
  7. }
  8. // include the language translations
  9. define('OG_LOCALE'$language '_' strtoupper($language));
  10. @setlocale(LC_TIMEOG_LOCALE '.UTF-8');
require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php') in /home/gensec/web/gensec.com.ua/public_html/product_info.php (line 8)
  1. use JsonLd\Container;
  2. use JsonLd\Product;
  3. use JsonLd\ProductReview;
  4. require('includes/application_top.php');
  5. includeLanguages(DIR_WS_LANGUAGES $language '/' FILENAME_PRODUCT_INFO);
  6. // define current template constants:
  7. $productAvailable false;
  8. $productReviewsArr = [];

Stack Trace

ErrorException
ErrorException:
Cannot modify header information - headers already sent by (output started at /home/gensec/web/gensec.com.ua/public_html/app/Exceptions/Handler/Handler.php:106)

  at /home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:451
  at Bootstrap\HandleExceptions->handleError()
     (/home/gensec/web/gensec.com.ua/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at setcookie()
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:451)
  at require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php')
     (/home/gensec/web/gensec.com.ua/public_html/product_info.php:8)                
Cannot modify header information - headers already sent by (output started at /home/gensec/web/gensec.com.ua/public_html/app/Exceptions/Handler/Handler.php:106) (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

Cannot modify header information - headers already sent by (output started at /home/gensec/web/gensec.com.ua/public_html/app/Exceptions/Handler/Handler.php:106)

Exception

ErrorException

  1.     }
  2. }
  3. function tep_setcookie($name$value ''$expire 0$path '/'$domain ''$secure 0$HttpOnly true)
  4. {
  5.     setcookie($name$value$expire$path, (tep_not_null($domain) ? $domain ''), $secure$HttpOnly);
  6. }
  7. function tep_get_ip_address()
  8. {
  9.     if (isset($_SERVER)) {
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1.     }
  2. }
  3. function tep_setcookie($name$value ''$expire 0$path '/'$domain ''$secure 0$HttpOnly true)
  4. {
  5.     setcookie($name$value$expire$path, (tep_not_null($domain) ? $domain ''), $secure$HttpOnly);
  6. }
  7. function tep_get_ip_address()
  8. {
  9.     if (isset($_SERVER)) {
  1.         require(DIR_WS_CLASSES 'geoplugin.class.php');
  2.         $geoplugin = new geoPlugin();
  3.         $geoplugin->locate();
  4.         $geopluginJSONE json_encode($geoplugin);
  5.         tep_session_register('geopluginJSONE');
  6.         tep_setcookie('geoplugin_data'json_encode($geoplugin), time() + SECONDS_PER_WEEK,'/'''0false);
  7.     } else {
  8.         $geoplugin json_decode($_SESSION['geopluginJSONE']);
  9.     }
  10.     $useLanguageOfCountryFlag false;
require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php') in /home/gensec/web/gensec.com.ua/public_html/product_info.php (line 8)
  1. use JsonLd\Container;
  2. use JsonLd\Product;
  3. use JsonLd\ProductReview;
  4. require('includes/application_top.php');
  5. includeLanguages(DIR_WS_LANGUAGES $language '/' FILENAME_PRODUCT_INFO);
  6. // define current template constants:
  7. $productAvailable false;
  8. $productReviewsArr = [];

Stack Trace

ErrorException
ErrorException:
Cannot modify header information - headers already sent by (output started at /home/gensec/web/gensec.com.ua/public_html/app/Exceptions/Handler/Handler.php:106)

  at /home/gensec/web/gensec.com.ua/public_html/includes/functions/general.php:1285
  at Bootstrap\HandleExceptions->handleError()
     (/home/gensec/web/gensec.com.ua/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at setcookie()
     (/home/gensec/web/gensec.com.ua/public_html/includes/functions/general.php:1285)
  at tep_setcookie()
     (/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php:831)
  at require('/home/gensec/web/gensec.com.ua/public_html/includes/application_top.php')
     (/home/gensec/web/gensec.com.ua/public_html/product_info.php:8)                
Автономна система безперебійного живлення потужністю 5 кВт з гелевими АКБ та сонячними панелями купити в інтернет-магазині General Security

Автономна система безперебійного живлення потужністю 5 кВт з гелевими АКБ та сонячними панелями

Код товару: 2523985
Нема в наявності
105474 грн
Акумуляторна батарея: зовнішня
Вбудований екран: є
Діапазон напруги,: 154-264
Кількість фаз (вхід/вихід): 1/1
Максимальна ємність АКБ, що підключається, Ач: до 500
0 відгуків
Короткий опис

Автономна система безперебійного живлення потужністю 5 кВт з гелевими АКБ та сонячними панелями включає в себе:

Гібридний інвертор Full Energy BBGI-5048MPW(NP) для сонячних панелей - 1 шт.

Акумулятор гелевий 12В 100 Аг для ДБЖ Full Energy FEL-12100 – 4 шт.

Сонячна панель RSM40-8-405MB - 8 шт.

Кабель інверторний 35 мм/0.5 м/пара - 4 шт.





Автономна система безперебійного живлення потужністю 5 кВт з гелевими АКБ та сонячними панелями включає в себе:



- Гібридний інвертор Full Energy BBGI-5048MPW(NP) для сонячних панелей - 1 шт.



- Акумулятор гелевий 12В 100 Аг для ДБЖ Full Energy FEL-12100 – 4 шт.



- Сонячна панель RSM40-8-405MB - 8 шт.



- Кабель інверторний 35 мм/0.5 м/пара - 4 шт.



- Конектор МС4



- Розгалужувач МС4 (за потреби)



- Кабель для монтажу сонячних панелей (від 15 до 50 м)



- AC DC Автоматичний вимикач



- Блокуючий діод з роз'ємами MC4 (за потреби)



Також у вкладці "Аксесуари" можна обрати один із варіантів монтажного комплекту для кріплення сонячних панелей:



- на похилий дах



- на плоску крівлю



- баластна система



Технічні характеристики Full Energy BBGI-5048MPW(NP)



Характеристики інвертора на вході:



- Вхідна напруга (постійний струм): DC 48 В



- Номінальна напруга: AC 220 В



- Діапазон напруги: AC 154-264 В



- Діапазон частот: 50/60 Гц



- Захист від короткого замикання: запобіжник



- Ефективність перетворення: >98%



- Час перемикання: 8 мс



Характеристики інвертора на виході:



- Номінальна потужність: 5000 Вт



- Вихідна напруга: AC 220 В



- Вихідна частота: 50/60 Гц



- Форма хвилі: чиста синусоїда



- Ефективність перетворення: >98%



- Захист від сплесків напруги: 10%



Характеристики батареї:



- Тип акумулятора: всі типи АКБ Full Energy



- Максимальний струм заряду батареї: 80 А



- Максимальна ємність АКБ: 500 А-год.



Технічні характеристики акумулятора FEL-12100



- Ємність: 100 Aг



- Напруга: 12 В



- Розміри (ДхВхШ): 328 x 217 x 172 мм



- Вага: 30 кг



Технічні характеристики сонячної панелі RSM40-8-405MB:



- Номінальна потужність: 405 Вт



- Тип кристала: монокристалічний кремній



- Максимальне поверхневе навантаження: 5,4 кПа



- ККД фотомодуля: 21,10 %



- Струм короткого замикання: 12.4 А



- Похибка: ±3 %



- Кількість елементів: 120 шт



- Тип гнізда: сумісний з MC4



- Переріз кабелю: 4 мм2



- Ступінь захисту: ІР 68



- Скло: Гартоване скло ARC



- Рама: Анодований алюміній



- Сертифікат IEC 61215



- Сертифікат IEC 61730



- Робоча температура: -40°C...+85°C



- Розміри: 1754x1096x30 мм



- Вага: 21 кг



Акумуляторна батарея
зовнішня
Вбудований екран
є
Діапазон напруги,
154-264
Кількість фаз (вхід/вихід)
1/1
Максимальна ємність АКБ, що підключається, Ач
до 500
Напруга в ланцюгу постійного струму,
48
Потужність, Вт
5000
Струм зарядки, А
80
Тип стабілізації вихідної напруги під час роботи від мережі
220
Точність вихідної напруги
±3%
Форма вихідної напруги
чиста синусоїда
Час перемикання на батарею, мс
8
Частота вихідної напруги під час роботи від АКБ, Гц
50/60 ±1%
Частота ДБЖ, Гц
50/60
Тип пристрою
комплект
Відгуки Автономна система безперебійного живлення потужністю 5 кВт з гелевими АКБ та сонячними панелями

Залишити свій відгук

Доставка по Україні

Доставка по Україні здійснюється транспортною компанією Нова Пошта до відділення.

Вартість:

  • доставка замовлень оплачується отримувачем, згідно з тарифами транспортної компанії.
  • доставка замовлень від 2000 грн. виконується безплатно за рахунок відправника.
  • вартість доставки габаритних/важких товарів обговорюється з менеджером під час замовлення.

Терміни доставки:

  • відправлення в день замовлення за умови оформлення замовлення до 16.00 і наявності замовленого товару в офісі General Security;
  • відправлення протягом 1-3 днів за умови наявності замовленого товару на складі General Security (прохання уточнювати наявність у менеджера).

Самовивіз з офісу

Замовте на сайті – заберіть у зручний час.

Важливо! Просимо звернути увагу, що не весь асортимент товарів є в наявності в офісі. Будь ласка, уточнюйте наявність товару перед приїздом.

 

Джерело безперебійного живлення Vinga LED 600 ВА / 360 Вт
#114977 В наявності

1804 грн

Джерело безперебійного живлення Vinga LED 600 ВА / 360 Вт