Phalcon Framework 4.1.2

ErrorException: Phalcon\Mvc\View\Engine\Volt\Compiler::compileFile(): write of 623 bytes failed with errno=28 No space left on device

/var/www/httpdocs/www/app/Web.php (90)
#0Phalcon\Mvc\View\Engine\Volt\Compiler->compileFile
#1Phalcon\Mvc\View\Engine\Volt\Compiler->compile
#2Phalcon\Mvc\View\Engine\Volt\Compiler->statementList
#3Phalcon\Mvc\View\Engine\Volt\Compiler->compileSource
#4Phalcon\Mvc\View\Engine\Volt\Compiler->compileFile
#5Phalcon\Mvc\View\Engine\Volt\Compiler->compile
#6Phalcon\Mvc\View\Engine\Volt->render
#7Phalcon\Mvc\View->engineRender
#8Phalcon\Mvc\View->processRender
#9Phalcon\Mvc\View->render
#10Phalcon\Mvc\Application->handle
/var/www/httpdocs/www/app/Web.php (90)
<?php
use Phalcon\Mvc\Application,
  Phalcon\Di\FactoryDefault,
  Phalcon\Config\Adapter\Yaml;
 
define('BASE_PATH', dirname(__DIR__));
define('APP_PATH', __DIR__);
 
// The FactoryDefault Dependency Injector automatically register the right services providing a full stack framework
$di = new FactoryDefault();
 
// Load application services
require APP_PATH . '/config/services.php';
 
// Read the configuration
$config = $di->getConfig();
 
define('APP_PUBLIC_PATH', BASE_PATH . '/' . $config->path->publicDir);
 
// Debugging
if ($config->debug)
{
  error_reporting(E_ALL);
  ini_set('display_errors', 1);
  (new \Phalcon\Debug())
    ->listen()
    ->listenExceptions()
    ->listenLowSeverity();
}
 
// Auto-loader configuration
$di->getLoader();
 
// Create an application
$application = new Application($di);
 
// Register the front and back end offices
$application->registerModules(
  array(
    'backend' => array(
      'className' => 'Rochatelain\Modules\Backend\Module',
      'path'      => APP_PATH . '/modules/Backend/Module.php',
    ),
    'frontend' => array(
      'className' => 'Rochatelain\Modules\Frontend\Module',
      'path'      => APP_PATH . '/modules/Frontend/Module.php',
    ),
  )
);
 
$locale = "en-US";
if (isset($_SERVER["HTTP_ACCEPT_LANGUAGE"]))
  $locale = Locale::acceptFromHttp($_SERVER["HTTP_ACCEPT_LANGUAGE"]);
setlocale(LC_ALL, $locale);
 
 
/*try {
    // Handle the request
    $response = $application->handle();
 
    $response->send();
} catch (\Exception $e) {
    echo 'Exception: ', $e->getMessage();
}*/
 
// Restricted area ?
if ($config->restricted_access)
{
  session_start();
  if (isset($_POST['pwd']))
  {
    if (isset($_SESSION['restricted_access_last_try']) && (time() - 1 < $_SESSION['restricted_access_last_try']))
      die("Trop de tentatives, patientez un instant et réessayez.");
    
    $_SESSION['restricted_access_last_try'] = time();
    
    if ($_POST['pwd'] == $config->restricted_access_password)
      $_SESSION['restricted_access'] = true;
  }
 
  if (!isset($_SESSION['restricted_access']))
  {
    include 'restricted_access.php';
    die();
  }
}
 
// Handle the request
if ($config->debug)
  echo $application->handle($_SERVER['REQUEST_URI'])->getContent();
else
{
  try {
    echo $application->handle($_SERVER['REQUEST_URI'])->getContent();
  } catch(Error $exception)
  {
    if (!file_exists(BASE_PATH . '/logs/errors.log'))
      file_put_contents(BASE_PATH . '/logs/errors.log', "");
    
    // Log error
    $ex = "### " . date('Y-m-d H:i:s') . "\n"
      . $exception->getMessage()
      . "\nin " . $exception->getFile()  . " (" . $exception->getLine() . ")\n\n";
    file_put_contents(BASE_PATH . '/logs/errors.log', $ex, FILE_APPEND | LOCK_EX);
    
    if ($_SERVER['REQUEST_URI'] != '/internal-error')
      header('Location: /internal-error');
    else
      die("Erreur interne - merci de contacter le support");
  }
}
#11require(/var/www/httpdocs/www/app/Web.php)
/var/www/httpdocs/www/public/index.php (7)
<?php
// phpinfo(); die();
 
use Phalcon\Mvc\Application,
  Phalcon\Config\Adapter\Yaml;
 
require('../app/Web.php');
KeyValue
_url/gallery/the-daisy-partners-in-studio-ii
KeyValue
SHELL/bin/bash
PWD/var/www/httpdocs
LOGNAMEnyimachatelain
HOME/var/www/httpdocs
USERnyimachatelain
SHLVL0
PATH/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
_/usr/local/sbin/php-fpm
HTTP_X_REAL_IP216.73.216.83
HTTP_X_FORWARDED_SERVER13474433e780
HTTP_X_FORWARDED_PROTOhttps
HTTP_X_FORWARDED_PORT443
HTTP_X_FORWARDED_HOSTwww.nyimachatelain.com
HTTP_X_FORWARDED_FOR216.73.216.83
HTTP_ACCEPT_ENCODINGgzip, br, zstd, deflate
HTTP_ACCEPT*/*
HTTP_USER_AGENTMozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_HOSTwww.nyimachatelain.com
PATH_TRANSLATED/var/www/httpdocs/www/public/index.php
PATH_INFO
SCRIPT_FILENAME/var/www/httpdocs/www/public/index.php
REDIRECT_STATUS200
SERVER_NAMEnyimachatelain.localhost
SERVER_PORT80
SERVER_ADDR172.18.0.47
REMOTE_PORT55792
REMOTE_ADDR216.73.216.83
SERVER_SOFTWAREnginx/1.25.3
GATEWAY_INTERFACECGI/1.1
REQUEST_SCHEMEhttp
SERVER_PROTOCOLHTTP/1.1
DOCUMENT_ROOT/var/www/httpdocs/www/public
DOCUMENT_URI/index.php
REQUEST_URI/gallery/the-daisy-partners-in-studio-ii
SCRIPT_NAME/index.php
CONTENT_LENGTH
CONTENT_TYPE
REQUEST_METHODGET
QUERY_STRING_url=/gallery/the-daisy-partners-in-studio-ii&
FCGI_ROLERESPONDER
PHP_SELF/index.php
REQUEST_TIME_FLOAT1765821619.6381
REQUEST_TIME1765821619
#Path
0/var/www/httpdocs/www/public/index.php
1/var/www/httpdocs/www/app/Web.php
2/var/www/httpdocs/www/app/config/services.php
3/var/www/httpdocs/www/app/config/loader.php
4/var/www/httpdocs/www/vendor/autoload.php
5/var/www/httpdocs/www/vendor/composer/autoload_real.php
6/var/www/httpdocs/www/vendor/composer/ClassLoader.php
7/var/www/httpdocs/www/vendor/composer/autoload_static.php
8/var/www/httpdocs/www/vendor/symfony/polyfill-ctype/bootstrap.php
9/var/www/httpdocs/www/vendor/symfony/polyfill-mbstring/bootstrap.php
10/var/www/httpdocs/www/vendor/symfony/polyfill-php72/bootstrap.php
11/var/www/httpdocs/www/vendor/symfony/polyfill-iconv/bootstrap.php
12/var/www/httpdocs/www/vendor/symfony/polyfill-intl-idn/bootstrap.php
13/var/www/httpdocs/www/vendor/swiftmailer/swiftmailer/lib/swift_required.php
14/var/www/httpdocs/www/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php
15/var/www/httpdocs/www/app/config/routes.php
16/var/www/httpdocs/www/app/modules/Frontend/Module.php
17/var/www/httpdocs/www/app/modules/Frontend/plugins/SessionPlugin.php
18/var/www/httpdocs/www/app/modules/Frontend/plugins/SecurityPlugin.php
19/var/www/httpdocs/www/app/modules/Frontend/plugins/MaintenancePlugin.php
20/var/www/httpdocs/www/app/modules/Frontend/plugins/NotFoundPlugin.php
21/var/www/httpdocs/www/app/modules/Frontend/controllers/GalleryController.php
22/var/www/httpdocs/www/app/modules/Frontend/controllers/ControllerBase.php
23/var/www/httpdocs/www/bootstrap/controllers/ControllerBase.php
24/var/www/httpdocs/www/app/common/models/Setting.php
25/var/www/httpdocs/www/app/common/models/ModelBase.php
26/var/www/httpdocs/www/bootstrap/models/ModelBase.php
27/var/www/httpdocs/www/bootstrap/components/Tags.php
28/var/www/httpdocs/www/app/modules/Frontend/components/Gallery.php
29/var/www/httpdocs/www/app/common/models/CmsGallery.php
30/var/www/httpdocs/www/app/modules/Frontend/controllers/ErrorController.php
31/var/www/httpdocs/www/bootstrap/library/Volt.php
Memory
Usage2097152