Pakruojo r. Balsių pagrindinė mokykla

Pradinukai sulaukė svečių

  • Paskelbė : Dovilė
  • Paskelbta: 2021-12-07
  • Kategorija: Renginiai

Balsių pradinukai sulaukė svečių. Į mokyklą atvyko klounas Vytukas su  edukacine ir kultūrine cirko programa. Vytukas visus nustebino ne tik pasirodymu, bet ir staigmena, kuri sužavėjo visus. Klounas į svečius atvyko  kartu su Kalėdų seneliu. Visi smagiai praleidome laiką.

Nepamirškite padėkoti autoriui
Ankstesnės naujienos
  • Projektinė veikla
  • Tėvams
  • Mokiniams
  • Mokytojams
Naujienų archyvas
Whoops! There was an error.
ErrorException (E_WARNING)
file_put_contents(): Only 0 of 314 bytes written, possibly out of free disk space ErrorException thrown with message "file_put_contents(): Only 0 of 314 bytes written, possibly out of free disk space" Stacktrace: #6 ErrorException in /home/pakbal/domains/balsiupm.lt/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:111 #5 file_put_contents in /home/pakbal/domains/balsiupm.lt/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:111 #4 Illuminate\Filesystem\Filesystem:put in /home/pakbal/domains/balsiupm.lt/public_html/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php:83 #3 Illuminate\Session\FileSessionHandler:write in /home/pakbal/domains/balsiupm.lt/public_html/vendor/laravel/framework/src/Illuminate/Session/Store.php:263 #2 Illuminate\Session\Store:save in /home/pakbal/domains/balsiupm.lt/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:88 #1 Illuminate\Session\Middleware\StartSession:terminate in /home/pakbal/domains/balsiupm.lt/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:177 #0 Illuminate\Foundation\Http\Kernel:terminate in /home/pakbal/domains/balsiupm.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/pakbal/domains/balsiupm.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 314 bytes written, possibly out of free disk space"
    
/home/pakbal/domains/balsiupm.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/pakbal/domains/balsiupm.lt/public_html/storage/framework/sessions/CRZlJAEGIIecsnFuvJeU5FzYI89fgaViAb9ZaNv3"
    
  2. "a:4:{s:6:"_token";s:40:"8zIhG1crrBgbIxt38TF8YHIRVgJdICZTDz2riPKD";s:9:"_previous";a:1:{s:3:"url";s:76:"https://balsiupm.lt/lt/naujienos/renginiai/2021/12/pradinukai-sulauke-sveciu";}s:9:"_sf2_meta";a:3:{s:1:"u";i:1774865518;s:1:"c";i:1774865518;s:1:"l";s:1:"0";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. 2
    
/home/pakbal/domains/balsiupm.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/pakbal/domains/balsiupm.lt/public_html/storage/framework/sessions/CRZlJAEGIIecsnFuvJeU5FzYI89fgaViAb9ZaNv3"
    
  2. "a:4:{s:6:"_token";s:40:"8zIhG1crrBgbIxt38TF8YHIRVgJdICZTDz2riPKD";s:9:"_previous";a:1:{s:3:"url";s:76:"https://balsiupm.lt/lt/naujienos/renginiai/2021/12/pradinukai-sulauke-sveciu";}s:9:"_sf2_meta";a:3:{s:1:"u";i:1774865518;s:1:"c";i:1774865518;s:1:"l";s:1:"0";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. true
    
/home/pakbal/domains/balsiupm.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. "CRZlJAEGIIecsnFuvJeU5FzYI89fgaViAb9ZaNv3"
    
  2. "a:4:{s:6:"_token";s:40:"8zIhG1crrBgbIxt38TF8YHIRVgJdICZTDz2riPKD";s:9:"_previous";a:1:{s:3:"url";s:76:"https://balsiupm.lt/lt/naujienos/renginiai/2021/12/pradinukai-sulauke-sveciu";}s:9:"_sf2_meta";a:3:{s:1:"u";i:1774865518;s:1:"c";i:1774865518;s:1:"l";s:1:"0";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
/home/pakbal/domains/balsiupm.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/pakbal/domains/balsiupm.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/pakbal/domains/balsiupm.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
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
CONTENT_LENGTH
"0"
HTTP_HOST
"balsiupm.lt"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
REDIRECT_UNIQUE_ID
"acpMbUMjdh@gMKWh1ShLNQAAGUo"
REDIRECT_HTTP_AUTHORIZATION
""
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"balsiupm.lt"
REDIRECT_HTTP2
"on"
REDIRECT_H2PUSH
"off"
REDIRECT_H2_PUSH
"off"
REDIRECT_H2_PUSHED
""
REDIRECT_H2_PUSHED_ON
""
REDIRECT_H2_STREAM_ID
"1"
REDIRECT_H2_STREAM_TAG
"25-1"
REDIRECT_STATUS
"200"
UNIQUE_ID
"acpMbUMjdh@gMKWh1ShLNQAAGUo"
HTTP_AUTHORIZATION
""
HTTPS
"on"
SSL_TLS_SNI
"balsiupm.lt"
HTTP2
"on"
H2PUSH
"off"
H2_PUSH
"off"
H2_PUSHED
""
H2_PUSHED_ON
""
H2_STREAM_ID
"1"
H2_STREAM_TAG
"25-1"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache/2"
SERVER_NAME
"balsiupm.lt"
SERVER_ADDR
"159.69.75.95"
SERVER_PORT
"443"
REMOTE_ADDR
"216.73.216.185"
DOCUMENT_ROOT
"/home/pakbal/domains/balsiupm.lt/public_html/public"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home/pakbal/domains/balsiupm.lt/public_html/public"
SERVER_ADMIN
"webmaster@balsiupm.lt"
SCRIPT_FILENAME
"/home/pakbal/domains/balsiupm.lt/public_html/public/index.php"
REMOTE_PORT
"33005"
REDIRECT_URL
"/lt/naujienos/renginiai/2021/12/pradinukai-sulauke-sveciu"
SERVER_PROTOCOL
"HTTP/2.0"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/lt/naujienos/renginiai/2021/12/pradinukai-sulauke-sveciu"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1774865518.2875
REQUEST_TIME
1774865518
ORIGINAL_REQUEST_URI
"/lt/naujienos/renginiai/2021/12/pradinukai-sulauke-sveciu"
APP_ENV
"production"
APP_DEBUG
"true"
DEBUG_BAR
"false"
INSTALLED
"true"
APP_KEY
"base64:wE8no7dR7IwwppFp0MkKGZUYgRpLcuIhv4oVueJcG3g="
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_DATABASE
"pakbal_www"
DB_USERNAME
"pakbal_www"
DB_PASSWORD
"FEs5r6jf0qId"
APPLICATION_NAME
"pakbal.svetainesmokykloms.lt"
APPLICATION_DOMAIN
"skeleton.svetainesmokykloms.lt"
APPLICATION_REFERENCE
"default"
APP_URL
"http://pakbal.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"
CLEVERPHANT_SUBSCRIPTION_API
"1|LmYeQRhFEU9FjQw5LNrimnKd1pnszL5sWJMMBL4j74387150"
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:wE8no7dR7IwwppFp0MkKGZUYgRpLcuIhv4oVueJcG3g="
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_DATABASE
"pakbal_www"
DB_USERNAME
"pakbal_www"
DB_PASSWORD
"FEs5r6jf0qId"
APPLICATION_NAME
"pakbal.svetainesmokykloms.lt"
APPLICATION_DOMAIN
"skeleton.svetainesmokykloms.lt"
APPLICATION_REFERENCE
"default"
APP_URL
"http://pakbal.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"
CLEVERPHANT_SUBSCRIPTION_API
"1|LmYeQRhFEU9FjQw5LNrimnKd1pnszL5sWJMMBL4j74387150"
0. Whoops\Handler\PrettyPageHandler