Projektas NR. 09.2.1-ESFA-K-728-03-0010 „Matematikos pasiekimų gerinimas pasitelkiant virtualią ugdymo aplinką“

  • Elektroninis dienynas
  • Tėvams
  • Mokiniams
  • Mokytojams
Pamokų laikas
Pertrauka
  • 1. 8.00 – 8.45
  • 2. 8.55 – 9.40
  • 3. 9.50 – 10.35
  • 4. 10.50 – 11.35
  • 5. 11.55 – 12.40
  • 6. 13.10 – 13.55
  • 7. 14.05 – 14.50
  • 8. 14.55 – 15.40
Whoops! There was an error.
ErrorException (E_WARNING)
file_put_contents(): Only 0 of 404 bytes written, possibly out of free disk space ErrorException thrown with message "file_put_contents(): Only 0 of 404 bytes written, possibly out of free disk space" Stacktrace: #6 ErrorException in /home/herman/domains/hzg.lt/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:111 #5 file_put_contents in /home/herman/domains/hzg.lt/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:111 #4 Illuminate\Filesystem\Filesystem:put in /home/herman/domains/hzg.lt/public_html/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php:83 #3 Illuminate\Session\FileSessionHandler:write in /home/herman/domains/hzg.lt/public_html/vendor/laravel/framework/src/Illuminate/Session/Store.php:263 #2 Illuminate\Session\Store:save in /home/herman/domains/hzg.lt/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:88 #1 Illuminate\Session\Middleware\StartSession:terminate in /home/herman/domains/hzg.lt/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:177 #0 Illuminate\Foundation\Http\Kernel:terminate in /home/herman/domains/hzg.lt/public_html/public/index.php:58
Stack frames (7)
6
ErrorException
/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php111
5
file_put_contents
/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php111
4
Illuminate\Filesystem\Filesystem put
/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php83
3
Illuminate\Session\FileSessionHandler write
/vendor/laravel/framework/src/Illuminate/Session/Store.php263
2
Illuminate\Session\Store save
/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php88
1
Illuminate\Session\Middleware\StartSession terminate
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php177
0
Illuminate\Foundation\Http\Kernel terminate
/public/index.php58
/home/herman/domains/hzg.lt/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
     *
     * @param  string  $file
     * @return mixed
     */
    public function requireOnce($file)
    {
        require_once $file;
    }
 
    /**
     * Write the contents of a file.
     *
     * @param  string  $path
     * @param  string  $contents
     * @param  bool  $lock
     * @return int
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Prepend to a file.
     *
     * @param  string  $path
     * @param  string  $data
     * @return int
     */
    public function prepend($path, $data)
    {
        if ($this->exists($path)) {
            return $this->put($path, $data.$this->get($path));
        }
 
        return $this->put($path, $data);
    }
 
    /**
     * Append to a file.
Arguments
  1. "file_put_contents(): Only 0 of 404 bytes written, possibly out of free disk space"
    
/home/herman/domains/hzg.lt/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
     *
     * @param  string  $file
     * @return mixed
     */
    public function requireOnce($file)
    {
        require_once $file;
    }
 
    /**
     * Write the contents of a file.
     *
     * @param  string  $path
     * @param  string  $contents
     * @param  bool  $lock
     * @return int
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Prepend to a file.
     *
     * @param  string  $path
     * @param  string  $data
     * @return int
     */
    public function prepend($path, $data)
    {
        if ($this->exists($path)) {
            return $this->put($path, $data.$this->get($path));
        }
 
        return $this->put($path, $data);
    }
 
    /**
     * Append to a file.
Arguments
  1. "/home/herman/domains/hzg.lt/public_html/storage/framework/sessions/Q6ma37n75Fn3cCXjy7o4uj6Je4dzwEHHwXFHNGIs"
    
  2. "a:4:{s:6:"_token";s:40:"7lbp1W7mBs9Ezv0LZ54uQ2Nq1dX8tM4ucGzeCdLt";s:9:"_previous";a:1:{s:3:"url";s:165:"https://hzg.lt/projektine-veikla/tarptautiniai-projektai/projektas-nr-09-2-1-esfa-k-728-03-0010-matematikos-pasiekimu-gerinimas-pasitelkiant-virtualia-ugdymo-aplinka";}s:9:"_sf2_meta";a:3:{s:1:"u";i:1745353522;s:1:"c";i:1745353522;s:1:"l";s:1:"0";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. 2
    
/home/herman/domains/hzg.lt/public_html/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php
    /**
     * {@inheritdoc}
     */
    public function read($sessionId)
    {
        if ($this->files->exists($path = $this->path.'/'.$sessionId)) {
            if (filemtime($path) >= Carbon::now()->subMinutes($this->minutes)->getTimestamp()) {
                return $this->files->get($path, true);
            }
        }
 
        return '';
    }
 
    /**
     * {@inheritdoc}
     */
    public function write($sessionId, $data)
    {
        $this->files->put($this->path.'/'.$sessionId, $data, true);
 
        return true;
    }
 
    /**
     * {@inheritdoc}
     */
    public function destroy($sessionId)
    {
        $this->files->delete($this->path.'/'.$sessionId);
 
        return true;
    }
 
    /**
     * {@inheritdoc}
     */
    public function gc($lifetime)
    {
        $files = Finder::create()
Arguments
  1. "/home/herman/domains/hzg.lt/public_html/storage/framework/sessions/Q6ma37n75Fn3cCXjy7o4uj6Je4dzwEHHwXFHNGIs"
    
  2. "a:4:{s:6:"_token";s:40:"7lbp1W7mBs9Ezv0LZ54uQ2Nq1dX8tM4ucGzeCdLt";s:9:"_previous";a:1:{s:3:"url";s:165:"https://hzg.lt/projektine-veikla/tarptautiniai-projektai/projektas-nr-09-2-1-esfa-k-728-03-0010-matematikos-pasiekimu-gerinimas-pasitelkiant-virtualia-ugdymo-aplinka";}s:9:"_sf2_meta";a:3:{s:1:"u";i:1745353522;s:1:"c";i:1745353522;s:1:"l";s:1:"0";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. true
    
/home/herman/domains/hzg.lt/public_html/vendor/laravel/framework/src/Illuminate/Session/Store.php
     * Generate a new session identifier.
     *
     * @param  bool  $destroy
     * @return bool
     */
    public function regenerate($destroy = false)
    {
        return $this->migrate($destroy);
    }
 
    /**
     * {@inheritdoc}
     */
    public function save()
    {
        $this->addBagDataToSession();
 
        $this->ageFlashData();
 
        $this->handler->write($this->getId(), $this->prepareForStorage(serialize($this->attributes)));
 
        $this->started = false;
    }
 
    /**
     * Prepare the serialized session data for storage.
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForStorage($data)
    {
        return $data;
    }
 
    /**
     * Merge all of the bag data into the session.
     *
     * @return void
     */
Arguments
  1. "Q6ma37n75Fn3cCXjy7o4uj6Je4dzwEHHwXFHNGIs"
    
  2. "a:4:{s:6:"_token";s:40:"7lbp1W7mBs9Ezv0LZ54uQ2Nq1dX8tM4ucGzeCdLt";s:9:"_previous";a:1:{s:3:"url";s:165:"https://hzg.lt/projektine-veikla/tarptautiniai-projektai/projektas-nr-09-2-1-esfa-k-728-03-0010-matematikos-pasiekimu-gerinimas-pasitelkiant-virtualia-ugdymo-aplinka";}s:9:"_sf2_meta";a:3:{s:1:"u";i:1745353522;s:1:"c";i:1745353522;s:1:"l";s:1:"0";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
/home/herman/domains/hzg.lt/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
        if ($this->sessionConfigured()) {
            $this->storeCurrentUrl($request, $session);
 
            $this->addCookieToResponse($response, $session);
        }
 
        return $response;
    }
 
    /**
     * Perform any final actions for the request lifecycle.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Symfony\Component\HttpFoundation\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        if ($this->sessionHandled && $this->sessionConfigured() && ! $this->usingCookieSessions()) {
            $this->manager->driver()->save();
        }
    }
 
    /**
     * Start the session for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Session\SessionInterface
     */
    protected function startSession(Request $request)
    {
        $session = $this->getSession($request);
 
        $session->setRequestOnHandler($request);
 
        $session->start();
 
        return $session;
    }
 
/home/herman/domains/hzg.lt/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     * @return void
     */
    public function terminate($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
                continue;
            }
 
            list($name, $parameters) = $this->parseMiddleware($middleware);
 
            $instance = $this->app->make($name);
 
            if (method_exists($instance, 'terminate')) {
                $instance->terminate($request, $response);
            }
        }
 
        $this->app->terminate();
    }
 
    /**
     * Gather the route middleware for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    protected function gatherRouteMiddleware($request)
    {
        if ($route = $request->route()) {
            return $this->router->gatherRouteMiddleware($route);
        }
 
        return [];
    }
Arguments
  1. Request {}
    
  2. Response {}
    
/home/herman/domains/hzg.lt/public_html/public/index.php
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
 
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 
$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);
 
$response->send();
 
$kernel->terminate($request, $response);
 
/*Set locale for carbon human date*/
setlocale(LC_TIME, 'lt_LT.utf8');
 
Arguments
  1. Request {}
    
  2. Response {}
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
HTTP_ACCEPT_ENCODING
"br,gzip"
HTTP_ACCEPT_LANGUAGE
"en-US,en;q=0.5"
CONTENT_LENGTH
"0"
HTTP_HOST
"hzg.lt"
HTTP_USER_AGENT
"CCBot/2.0 (https://commoncrawl.org/faq/)"
HTTP_IF_MODIFIED_SINCE
"Thu, 16 Jan 2025 09:34:40 GMT"
REDIRECT_UNIQUE_ID
"aAf7MhBaXvSc6jEfhh49MgABvQs"
REDIRECT_HTTP_AUTHORIZATION
""
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"hzg.lt"
REDIRECT_HTTP2
"on"
REDIRECT_H2PUSH
"on"
REDIRECT_H2_PUSH
"on"
REDIRECT_H2_PUSHED
""
REDIRECT_H2_PUSHED_ON
""
REDIRECT_H2_STREAM_ID
"3"
REDIRECT_H2_STREAM_TAG
"445-3"
REDIRECT_STATUS
"200"
UNIQUE_ID
"aAf7MhBaXvSc6jEfhh49MgABvQs"
HTTP_AUTHORIZATION
""
HTTPS
"on"
SSL_TLS_SNI
"hzg.lt"
HTTP2
"on"
H2PUSH
"on"
H2_PUSH
"on"
H2_PUSHED
""
H2_PUSHED_ON
""
H2_STREAM_ID
"3"
H2_STREAM_TAG
"445-3"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache/2"
SERVER_NAME
"hzg.lt"
SERVER_ADDR
"159.69.75.95"
SERVER_PORT
"443"
REMOTE_ADDR
"18.97.14.91"
DOCUMENT_ROOT
"/home/herman/domains/hzg.lt/public_html/public"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home/herman/domains/hzg.lt/public_html/public"
SERVER_ADMIN
"webmaster@hzg.lt"
SCRIPT_FILENAME
"/home/herman/domains/hzg.lt/public_html/public/index.php"
REMOTE_PORT
"46898"
REDIRECT_URL
"/projektine-veikla/tarptautiniai-projektai/projektas-nr-09-2-1-esfa-k-728-03-0010-matematikos-pasiekimu-gerinimas-pasitelkiant-virtualia-ugdymo-aplinka"
SERVER_PROTOCOL
"HTTP/2.0"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/projektine-veikla/tarptautiniai-projektai/projektas-nr-09-2-1-esfa-k-728-03-0010-matematikos-pasiekimu-gerinimas-pasitelkiant-virtualia-ugdymo-aplinka"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1745353522.0048
REQUEST_TIME
1745353522
ORIGINAL_REQUEST_URI
"/projektine-veikla/tarptautiniai-projektai/projektas-nr-09-2-1-esfa-k-728-03-0010-matematikos-pasiekimu-gerinimas-pasitelkiant-virtualia-ugdymo-aplinka"
APP_ENV
"production"
APP_DEBUG
"true"
DEBUG_BAR
"false"
INSTALLED
"true"
APP_KEY
"base64:cBmgB0tTkz9aX8d2HGddWJnee9DyPIE95KQUXms8mLw="
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_DATABASE
"herman_www"
DB_USERNAME
"herman_www"
DB_PASSWORD
"419qVLW30CHl"
APPLICATION_NAME
"herman.svetainesmokykloms.lt"
APPLICATION_DOMAIN
"skeleton.svetainesmokykloms.lt"
APPLICATION_REFERENCE
"default"
APP_URL
"http://herman.svetainesmokykloms.lt"
ADMIN_USERNAME
"admin"
LAZY_TRANSLATIONS
"true"
ADMIN_THEME
"pyrocms.theme.accelerant"
DEFAULT_CURRENCY
"EUR"
APP_TIME_FORMAT
"H:i"
APP_LOCALE
"lt"
ENABLED_CURRENCIES
"EUR"
MAIL_DRIVER
"smtp"
MAIL_HOST
"mail.svetainesmokykloms.lt"
MAIL_USERNAME
"web@svetainesmokykloms.lt"
MAIL_PASSWORD
"w3basw3basw3bas"
MAIL_PORT
"587"
MAIL_ENCRYPTION
"null"
GEOCODER_KEY
"AIzaSyBKwF8z30plyb1FwLvGsKOC0y3Wq-dkxAU"
MAIL_FROM
"neatsakyti@cleverphant.lt"
Key Value
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
APP_ENV
"production"
APP_DEBUG
"true"
DEBUG_BAR
"false"
INSTALLED
"true"
APP_KEY
"base64:cBmgB0tTkz9aX8d2HGddWJnee9DyPIE95KQUXms8mLw="
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_DATABASE
"herman_www"
DB_USERNAME
"herman_www"
DB_PASSWORD
"419qVLW30CHl"
APPLICATION_NAME
"herman.svetainesmokykloms.lt"
APPLICATION_DOMAIN
"skeleton.svetainesmokykloms.lt"
APPLICATION_REFERENCE
"default"
APP_URL
"http://herman.svetainesmokykloms.lt"
ADMIN_USERNAME
"admin"
LAZY_TRANSLATIONS
"true"
ADMIN_THEME
"pyrocms.theme.accelerant"
DEFAULT_CURRENCY
"EUR"
APP_TIME_FORMAT
"H:i"
APP_LOCALE
"lt"
ENABLED_CURRENCIES
"EUR"
MAIL_DRIVER
"smtp"
MAIL_HOST
"mail.svetainesmokykloms.lt"
MAIL_USERNAME
"web@svetainesmokykloms.lt"
MAIL_PASSWORD
"w3basw3basw3bas"
MAIL_PORT
"587"
MAIL_ENCRYPTION
"null"
GEOCODER_KEY
"AIzaSyBKwF8z30plyb1FwLvGsKOC0y3Wq-dkxAU"
MAIL_FROM
"neatsakyti@cleverphant.lt"
0. Whoops\Handler\PrettyPageHandler