Infrastructure

Divisions Infrastructure

Infrastructure

Infrastructure Division

Over the past few years, The Government of Egypt has embarked on a major program to expand and improve public infrastructure through Public Private Partnership. As a part of this program, the Ministry of Housing, Utilities, and Urban Development "MHUUD" represented by the Construction Authority for Potable Water and Wastewater “CAPW” wishes to attract a private sector Service Provider to design, build, finance and operate a new Wastewater Treatment Plants and relative pipe lines.

Econtech continued to fulfil its commitment to the Egyptian market and in order to be aligned with the government program, we managed to get into a partnership with one of the biggest pipes supplier all over the world and succeeded to supply most of the projects requirements and acquire 80 % of the market share.

Noksel

View Product
Whoops! There was an error.
ErrorException (E_WARNING)
file_put_contents(/home/econtech/public_html/storage/framework/sessions/L1cuE8uwVTK216ctrtckLfaRaXsTusMmDjCZhY9A): failed to open stream: Disk quota exceeded ErrorException thrown with message "file_put_contents(/home/econtech/public_html/storage/framework/sessions/L1cuE8uwVTK216ctrtckLfaRaXsTusMmDjCZhY9A): failed to open stream: Disk quota exceeded" Stacktrace: #7 ErrorException in /home/econtech/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122 #6 file_put_contents in /home/econtech/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122 #5 Illuminate\Filesystem\Filesystem:put in /home/econtech/public_html/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php:83 #4 Illuminate\Session\FileSessionHandler:write in /home/econtech/public_html/vendor/laravel/framework/src/Illuminate/Session/Store.php:128 #3 Illuminate\Session\Store:save in /home/econtech/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:87 #2 Illuminate\Session\Middleware\StartSession:terminate in /home/econtech/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:218 #1 Illuminate\Foundation\Http\Kernel:terminateMiddleware in /home/econtech/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:189 #0 Illuminate\Foundation\Http\Kernel:terminate in /home/econtech/public_html/public/index.php:55
7
ErrorException
/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php122
6
file_put_contents
/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php122
5
Illuminate\Filesystem\Filesystem put
/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php83
4
Illuminate\Session\FileSessionHandler write
/vendor/laravel/framework/src/Illuminate/Session/Store.php128
3
Illuminate\Session\Store save
/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php87
2
Illuminate\Session\Middleware\StartSession terminate
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php218
1
Illuminate\Foundation\Http\Kernel terminateMiddleware
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php189
0
Illuminate\Foundation\Http\Kernel terminate
/public/index.php55
/home/econtech/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
     *
     * @param  string  $path
     * @return string
     */
    public function hash($path)
    {
        return md5_file($path);
    }
 
    /**
     * 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(/home/econtech/public_html/storage/framework/sessions/L1cuE8uwVTK216ctrtckLfaRaXsTusMmDjCZhY9A): failed to open stream: Disk quota exceeded"
    
/home/econtech/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
     *
     * @param  string  $path
     * @return string
     */
    public function hash($path)
    {
        return md5_file($path);
    }
 
    /**
     * 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/econtech/public_html/storage/framework/sessions/L1cuE8uwVTK216ctrtckLfaRaXsTusMmDjCZhY9A"
    
  2. "a:3:{s:6:"_token";s:40:"T87eGWInykZjYreiktUV4wVFSj9r8cVfmyPBmZlO";s:9:"_previous";a:1:{s:3:"url";s:53:"http://www.econtechegypt.com/divisions/infrastructure";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. 2
    
/home/econtech/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/econtech/public_html/storage/framework/sessions/L1cuE8uwVTK216ctrtckLfaRaXsTusMmDjCZhY9A"
    
  2. "a:3:{s:6:"_token";s:40:"T87eGWInykZjYreiktUV4wVFSj9r8cVfmyPBmZlO";s:9:"_previous";a:1:{s:3:"url";s:53:"http://www.econtechegypt.com/divisions/infrastructure";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. true
    
/home/econtech/public_html/vendor/laravel/framework/src/Illuminate/Session/Store.php
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForUnserialize($data)
    {
        return $data;
    }
 
    /**
     * Save the session data to storage.
     *
     * @return bool
     */
    public function save()
    {
        $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;
    }
 
    /**
     * Age the flash data for the session.
     *
     * @return void
Arguments
  1. "L1cuE8uwVTK216ctrtckLfaRaXsTusMmDjCZhY9A"
    
  2. "a:3:{s:6:"_token";s:40:"T87eGWInykZjYreiktUV4wVFSj9r8cVfmyPBmZlO";s:9:"_previous";a:1:{s:3:"url";s:53:"http://www.econtechegypt.com/divisions/infrastructure";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
/home/econtech/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\Contracts\Session\Session
     */
    protected function startSession(Request $request)
    {
        return tap($this->getSession($request), function ($session) use ($request) {
            $session->setRequestOnHandler($request);
 
            $session->start();
        });
    }
 
    /**
     * Get the session implementation from the manager.
/home/econtech/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
                continue;
            }
 
            list($name) = $this->parseMiddleware($middleware);
 
            $instance = $this->app->make($name);
 
            if (method_exists($instance, 'terminate')) {
                $instance->terminate($request, $response);
            }
        }
    }
 
    /**
     * 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 {
      #json: null
      #convertedFiles: null
      #userResolver: Closure {
        class: "Illuminate\Auth\AuthServiceProvider"
        this: AuthServiceProvider { …}
        parameters: {
          $guard: {
            default: null
          }
        }
        use: {
          $app: Application { …}
        }
      }
      #routeResolver: Closure {
        class: "Illuminate\Routing\Router"
        this: Router { …}
        use: {
          $route: Route { …}
        }
      }
      +attributes: ParameterBag {}
      +request: ParameterBag {#1}
      +query: ParameterBag {#1}
      +server: ServerBag {}
      +files: FileBag {}
      +cookies: ParameterBag {}
      +headers: HeaderBag {}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/divisions/infrastructure"
      #requestUri: "/divisions/infrastructure"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Store {}
      #locale: null
      #defaultLocale: "en"
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Response {}
    
/home/econtech/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
 
            return $this->router->dispatch($request);
        };
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        $this->terminateMiddleware($request, $response);
 
        $this->app->terminate();
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
Arguments
  1. Request {
      #json: null
      #convertedFiles: null
      #userResolver: Closure {
        class: "Illuminate\Auth\AuthServiceProvider"
        this: AuthServiceProvider { …}
        parameters: {
          $guard: {
            default: null
          }
        }
        use: {
          $app: Application { …}
        }
      }
      #routeResolver: Closure {
        class: "Illuminate\Routing\Router"
        this: Router { …}
        use: {
          $route: Route { …}
        }
      }
      +attributes: ParameterBag {}
      +request: ParameterBag {#1}
      +query: ParameterBag {#1}
      +server: ServerBag {}
      +files: FileBag {}
      +cookies: ParameterBag {}
      +headers: HeaderBag {}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/divisions/infrastructure"
      #requestUri: "/divisions/infrastructure"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Store {}
      #locale: null
      #defaultLocale: "en"
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Response {}
    
/home/econtech/public_html/public/index.php
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/
 
$app = require_once __DIR__.'/../bootstrap/app.php';
 
$kernel = $app->make(Kernel::class);
 
$response = tap($kernel->handle(
    $request = Request::capture()
))->send();
 
$kernel->terminate($request, $response);
 
Arguments
  1. Request {
      #json: null
      #convertedFiles: null
      #userResolver: Closure {
        class: "Illuminate\Auth\AuthServiceProvider"
        this: AuthServiceProvider { …}
        parameters: {
          $guard: {
            default: null
          }
        }
        use: {
          $app: Application { …}
        }
      }
      #routeResolver: Closure {
        class: "Illuminate\Routing\Router"
        this: Router { …}
        use: {
          $route: Route { …}
        }
      }
      +attributes: ParameterBag {}
      +request: ParameterBag {#1}
      +query: ParameterBag {#1}
      +server: ServerBag {}
      +files: FileBag {}
      +cookies: ParameterBag {}
      +headers: HeaderBag {}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/divisions/infrastructure"
      #requestUri: "/divisions/infrastructure"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Store {}
      #locale: null
      #defaultLocale: "en"
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Response {}
    

Environment & details:

empty
empty
empty
Key Value
XSRF-TOKEN
"eyJpdiI6InNUZjI4a1RqRm9nRUF4Y1gza1FFY1E9PSIsInZhbHVlIjoiU3JUVnF1bHJXT1cxV0RkbFVBN05BRFNcLzR1amNUSGd3S0tXNzBLTjBjQzUzVk9OWmFyeVY2V2s2eVZScGFVWEwiLCJtYWMiOiIwY2JmOTAzM2MyOTJiNTczMjdhMGJmNmEyYzEwMjc2ODA5ZmIyNGE0OGJjZDVkNjExZjk4ZmZlZGM0Y2QxMGU3In0="
laravel_session
"eyJpdiI6Ilc1RkgyRzM4SjBrZnlyelZiSDA5N2c9PSIsInZhbHVlIjoiTWFRQ1FsSTJqeWp5Wk5SZmdaaFhEMythU09mcjJSWUJpMzMxckhDa2hcL2JpM05GbGtGUlR3b0RyV3NKUmFcL3RxIiwibWFjIjoiZGQ5MjUwNjcwZGZhYzk3MGNmOTE3NGM4NTI2Yzc5ZjE5NjJmNjhiZjMyNWUxZmU3NTY1YzZlNmI4Y2NhMzMwYSJ9"
empty
Key Value
CONTEXT_DOCUMENT_ROOT
"/home/econtech/public_html/public"
CONTEXT_PREFIX
""
DOCUMENT_ROOT
"/home/econtech/public_html/public"
GATEWAY_INTERFACE
"CGI/1.1"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_CACHE_CONTROL
"max-age=259200"
HTTP_CONNECTION
"keep-alive"
HTTP_COOKIE
"XSRF-TOKEN=eyJpdiI6InNUZjI4a1RqRm9nRUF4Y1gza1FFY1E9PSIsInZhbHVlIjoiU3JUVnF1bHJXT1cxV0RkbFVBN05BRFNcLzR1amNUSGd3S0tXNzBLTjBjQzUzVk9OWmFyeVY2V2s2eVZScGFVWEwiLCJtYWMiOiIwY2JmOTAzM2MyOTJiNTczMjdhMGJmNmEyYzEwMjc2ODA5ZmIyNGE0OGJjZDVkNjExZjk4ZmZlZGM0Y2QxMGU3In0%3D; laravel_session=eyJpdiI6Ilc1RkgyRzM4SjBrZnlyelZiSDA5N2c9PSIsInZhbHVlIjoiTWFRQ1FsSTJqeWp5Wk5SZmdaaFhEMythU09mcjJSWUJpMzMxckhDa2hcL2JpM05GbGtGUlR3b0RyV3NKUmFcL3RxIiwibWFjIjoiZGQ5MjUwNjcwZGZhYzk3MGNmOTE3NGM4NTI2Yzc5ZjE5NjJmNjhiZjMyNWUxZmU3NTY1YzZlNmI4Y2NhMzMwYSJ9"
HTTP_HOST
"www.econtechegypt.com"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_VIA
"1.1 squid-proxy-5b5d847c96-n8lw6 (squid/6.13)"
HTTP_X_FORWARDED_FOR
"10.3.142.203"
PATH
"/bin:/usr/bin"
PHP_INI_SCAN_DIR
"/opt/cpanel/ea-php73/root/etc:/opt/cpanel/ea-php73/root/etc/php.d:."
QUERY_STRING
""
REDIRECT_SCRIPT_URI
"http://www.econtechegypt.com/divisions/infrastructure"
REDIRECT_SCRIPT_URL
"/divisions/infrastructure"
REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"aP2Ix5K6bKfs8ruxeT2WSgAAAFI"
REDIRECT_URL
"/divisions/infrastructure"
REMOTE_ADDR
"216.73.216.136"
REMOTE_PORT
"11635"
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"http"
REQUEST_URI
"/divisions/infrastructure"
SCRIPT_FILENAME
"/home/econtech/public_html/public/index.php"
SCRIPT_NAME
"/index.php"
SCRIPT_URI
"http://www.econtechegypt.com/divisions/infrastructure"
SCRIPT_URL
"/divisions/infrastructure"
SERVER_ADDR
"173.249.157.85"
SERVER_ADMIN
"webmaster@econtechegypt.com"
SERVER_NAME
"www.econtechegypt.com"
SERVER_PORT
"80"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
TZ
"UTC"
UNIQUE_ID
"aP2Ix5K6bKfs8ruxeT2WSgAAAFI"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1761446087.8618
REQUEST_TIME
1761446087
argv
[]
argc
0
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:A5c95zvAab/YuHZkO2jPcJ49hjDZ6cm34M/rY4aspuQ="
APP_DEBUG
"true"
APP_URL
"http://localhost"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"econtech_eco"
DB_USERNAME
"econtech_eco"
DB_PASSWORD
"[EnKjB8q?[B5"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"mail.econtechegypt.com"
MAIL_PORT
"26"
MAIL_USERNAME
"info@econtechegypt.com"
MAIL_PASSWORD
"Q8lIwgWF[1)t"
MAIL_ENCRYPTION
"tls"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
Key Value
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:A5c95zvAab/YuHZkO2jPcJ49hjDZ6cm34M/rY4aspuQ="
APP_DEBUG
"true"
APP_URL
"http://localhost"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"econtech_eco"
DB_USERNAME
"econtech_eco"
DB_PASSWORD
"[EnKjB8q?[B5"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"mail.econtechegypt.com"
MAIL_PORT
"26"
MAIL_USERNAME
"info@econtechegypt.com"
MAIL_PASSWORD
"Q8lIwgWF[1)t"
MAIL_ENCRYPTION
"tls"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
0. Whoops\Handler\PrettyPageHandler