* @param bool $lock
* @return int
*/
public function put(string $path, $contents, $lock = false)
{
return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
}
/**
* Write the contents of a file, replacing it atomically if it already exists.
* @param string $path
//ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
error_reporting(E_ALL);
set_error_handler(function ($level, $message, $file = '', $line = 0) {
$this->handleError($level, $message, $file, $line);
});
set_exception_handler(function ($e) {
$this->handleException($e);
});
* @param bool $lock
* @return int
*/
public function put(string $path, $contents, $lock = false)
{
return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
}
/**
* Write the contents of a file, replacing it atomically if it already exists.
* @param string $path
$this->ensureCacheDirectoryExists($path = $this->path($key));
$result = $this->files->put(
$path,
$this->expiration($seconds) . serialize($value),
true
);
if ($result !== false && $result > 0) {
$this->ensureFileHasCorrectPermissions($path);
* @param mixed $value
* @return bool
*/
public function forever($key, $value): bool
{
return $this->put($key, $value, 0);
}
/**
* Remove an item from the cache.
* @param string $key
* @param mixed $value
* @return bool
*/
public function forever($key, $value)
{
$result = $this->store->forever($this->itemKey($key), $value);
if ($result) {
event(new CacheWritten($key, $value));
}
if (is_array($key)) {
return $this->putMany($key, $value);
}
if ($ttl === null) {
return $this->forever($key, $value);
}
$seconds = $this->getSeconds($ttl);
if ($seconds <= 0) {
// given number of seconds so it's available for all subsequent requests.
if (!is_null($value)) {
return $value;
}
$this->put($key, $value = $callback(), $ttl);
return $value;
}
/**
public static function remember(string $key, \Closure $closure, $ttl = null)
{
try {
return self::getRepository()
->remember(
$key,
$ttl,
$closure
);
} catch (\Exception $exception) {
Log::critical($exception->getMessage(), [
$cat_urls_array[$row['language_id']][$row['id']] = array($row['categories_seo_url'], $row['categories_name'], $row['parent_id']);
}
}
return $cat_urls_array;
},
null
);
}
function generateTreeForCache($exclude, $parent_cat)
{
require(DIR_WS_FUNCTIONS . 'validations.php'); // include validation functions (right now only email address)
require(DIR_WS_CLASSES . 'split_page_results.php'); // split-page-results
require(DIR_WS_CLASSES . 'breadcrumb.php'); // include the breadcrumb class and start the breadcrumb trail
$cat_tree = setTree(); //new function setTree
getCatSeoUrl();
$manufacturersToProductsId = [];
$prodToManufacturers = countProdToManufacturers();
$prodToCat = prodToCat();
$manufacturers_array = tep_get_manufacturers();
$taxRatesArray = getTaxRates();
use App\Classes\Cache\Helpers\FileCacheHelper;
$start = microtime(true);
require('includes/application_top.php');
checkTime('application_top');
includeLanguages(DIR_WS_LANGUAGES . $language . '/' . FILENAME_DEFAULT);
ErrorException
|
---|
ErrorException: file_put_contents(/var/www/astina/storage/cache/category_seo_urls/category_seo_urls$): failed to open stream: No such file or directory at /var/www/astina/app/Classes/Filesystem/Filesystem.php:140 at Bootstrap\HandleExceptions->handleError() (/var/www/astina/bootstrap/HandleExceptions.php:32) at Bootstrap\HandleExceptions->Bootstrap\{closure}() at file_put_contents() (/var/www/astina/app/Classes/Filesystem/Filesystem.php:140) at App\Classes\Filesystem\Filesystem->put() (/var/www/astina/app/Classes/Cache/Store/FileStore.php:64) at App\Classes\Cache\Store\FileStore->put() (/var/www/astina/app/Classes/Cache/Store/FileStore.php:131) at App\Classes\Cache\Store\FileStore->forever() (/var/www/astina/app/Classes/Cache/Repository.php:301) at App\Classes\Cache\Repository->forever() (/var/www/astina/app/Classes/Cache/Repository.php:160) at App\Classes\Cache\Repository->put() (/var/www/astina/app/Classes/Cache/Repository.php:328) at App\Classes\Cache\Repository->remember() (/var/www/astina/app/Classes/Cache/Helpers/FileCacheHelper.php:185) at App\Classes\Cache\Helpers\FileCacheHelper::remember() (/var/www/astina/includes/functions/general.php:2155) at getCatSeoUrl() (/var/www/astina/includes/application_top.php:795) at require('/var/www/astina/includes/application_top.php') (/var/www/astina/index.php:7) |