*
* @param \Closure|string $concrete
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
* @throws \Illuminate\Contracts\Container\CircularDependencyException
*/
public function build($concrete)
{
// If the concrete type is actually a Closure, we will just execute it and
// hand back the results of the functions, which allows functions to be
// used as resolvers for more fine-tuned resolution of these objects.
if ($concrete instanceof Closure) {
return $concrete($this, $this->getLastParameterOverride());
}
try {
$reflector = new ReflectionClass($concrete);
} catch (ReflectionException $e) {
throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
}
// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface or Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if (! $reflector->isInstantiable()) {
return $this->notInstantiable($concrete);
}
$this->buildStack[] = $concrete;
$constructor = $reflector->getConstructor();
// If there are no constructors, that means there are no dependencies then
// we can just resolve the instances of the objects right away, without
// resolving any other types or dependencies out of these containers.
if (is_null($constructor)) {
array_pop($this->buildStack);
return new $concrete;
"Target class [sage.view] does not exist."
/**
* Instantiate a concrete instance of the given type.
*
* @param \Closure|string $concrete
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
* @throws \Illuminate\Contracts\Container\CircularDependencyException
*/
public function build($concrete)
{
// If the concrete type is actually a Closure, we will just execute it and
// hand back the results of the functions, which allows functions to be
// used as resolvers for more fine-tuned resolution of these objects.
if ($concrete instanceof Closure) {
return $concrete($this, $this->getLastParameterOverride());
}
try {
$reflector = new ReflectionClass($concrete);
} catch (ReflectionException $e) {
throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
}
// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface or Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if (! $reflector->isInstantiable()) {
return $this->notInstantiable($concrete);
}
$this->buildStack[] = $concrete;
$constructor = $reflector->getConstructor();
// If there are no constructors, that means there are no dependencies then
// we can just resolve the instances of the objects right away, without
// resolving any other types or dependencies out of these containers.
if (is_null($constructor)) {
array_pop($this->buildStack);
"Class "sage.view" does not exist"
/**
* Instantiate a concrete instance of the given type.
*
* @param \Closure|string $concrete
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
* @throws \Illuminate\Contracts\Container\CircularDependencyException
*/
public function build($concrete)
{
// If the concrete type is actually a Closure, we will just execute it and
// hand back the results of the functions, which allows functions to be
// used as resolvers for more fine-tuned resolution of these objects.
if ($concrete instanceof Closure) {
return $concrete($this, $this->getLastParameterOverride());
}
try {
$reflector = new ReflectionClass($concrete);
} catch (ReflectionException $e) {
throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
}
// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface or Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if (! $reflector->isInstantiable()) {
return $this->notInstantiable($concrete);
}
$this->buildStack[] = $concrete;
$constructor = $reflector->getConstructor();
// If there are no constructors, that means there are no dependencies then
// we can just resolve the instances of the objects right away, without
// resolving any other types or dependencies out of these containers.
if (is_null($constructor)) {
array_pop($this->buildStack);
"sage.view"
$needsContextualBuild = ! empty($parameters) || ! is_null($concrete);
// If an instance of the type is currently being managed as a singleton we'll
// just return an existing instance instead of instantiating new instances
// so the developer can keep using the same objects instance every time.
if (isset($this->instances[$abstract]) && ! $needsContextualBuild) {
return $this->instances[$abstract];
}
$this->with[] = $parameters;
if (is_null($concrete)) {
$concrete = $this->getConcrete($abstract);
}
// We're ready to instantiate an instance of the concrete type registered for
// the binding. This will instantiate the types, as well as resolve any of
// its "nested" dependencies recursively until all have gotten resolved.
if ($this->isBuildable($concrete, $abstract)) {
$object = $this->build($concrete);
} else {
$object = $this->make($concrete);
}
// If we defined any extenders for this type, we'll need to spin through them
// and apply them to the object being built. This allows for the extension
// of services, such as changing configuration or decorating the object.
foreach ($this->getExtenders($abstract) as $extender) {
$object = $extender($object, $this);
}
// If the requested type is registered as a singleton we'll want to cache off
// the instances in "memory" so we can return it later without creating an
// entirely new instance of an object on each subsequent request for it.
if ($this->isShared($abstract) && ! $needsContextualBuild) {
$this->instances[$abstract] = $object;
}
if ($raiseEvents) {
$this->fireResolvingCallbacks($abstract, $object);
"sage.view"
public function make($abstract, array $parameters = [])
{
$this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
return parent::make($abstract, $parameters);
}
/**
* Resolve the given type from the container.
*
* @param string $abstract
* @param array $parameters
* @param bool $raiseEvents
* @return mixed
*/
protected function resolve($abstract, $parameters = [], $raiseEvents = true)
{
$this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
return parent::resolve($abstract, $parameters, $raiseEvents);
}
/**
* Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
*
* @param string $abstract
* @return void
*/
protected function loadDeferredProviderIfNeeded($abstract)
{
if ($this->isDeferredService($abstract) && ! isset($this->instances[$abstract])) {
$this->loadDeferredProvider($abstract);
}
}
/**
* Determine if the given abstract type has been bound.
*
* @param string $abstract
* @return bool
"sage.view"
[]
true
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function makeWith($abstract, array $parameters = [])
{
return $this->make($abstract, $parameters);
}
/**
* Resolve the given type from the container.
*
* @param string|callable $abstract
* @param array $parameters
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function make($abstract, array $parameters = [])
{
return $this->resolve($abstract, $parameters);
}
/**
* {@inheritdoc}
*
* @return mixed
*/
public function get($id)
{
try {
return $this->resolve($id);
} catch (Exception $e) {
if ($this->has($id) || $e instanceof CircularDependencyException) {
throw $e;
}
throw new EntryNotFoundException($id, $e->getCode(), $e);
}
}
"sage.view"
[]
if (! $this->isBooted()) {
$this->booting(function () use ($instance) {
$this->bootProvider($instance);
});
}
}
/**
* Resolve the given type from the container.
*
* @param string $abstract
* @param array $parameters
* @return mixed
*/
public function make($abstract, array $parameters = [])
{
$this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
return parent::make($abstract, $parameters);
}
/**
* Resolve the given type from the container.
*
* @param string $abstract
* @param array $parameters
* @param bool $raiseEvents
* @return mixed
*/
protected function resolve($abstract, $parameters = [], $raiseEvents = true)
{
$this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
return parent::resolve($abstract, $parameters, $raiseEvents);
}
/**
* Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
*
"sage.view"
[]
/**
* Resolve the given type from the container.
*
* @param string $abstract
* @param array $parameters
* @return mixed
*/
public function make($abstract, array $parameters = [])
{
$abstract = $this->getAlias($abstract);
if (
! $this->bound($abstract) &&
$provider = $this->instances['app.lazy']->getProvider($abstract)
) {
$this->register($provider);
}
return parent::make($abstract, $parameters);
}
/**
* Boot the given service provider.
*
* @param \Illuminate\Support\ServiceProvider $provider
* @return void
*/
protected function bootProvider(ServiceProvider $provider)
{
try {
parent::bootProvider($provider);
} catch (Throwable $e) {
$this->skipProvider($provider, $e);
}
}
/**
* Skip booting service provider and log error.
*
"sage.view"
[]
use Roots\Acorn\Assets\Contracts\Bundle;
use Roots\Acorn\Bootloader;
/**
* Get the available container instance.
*
* @param string|null $abstract
* @param array $parameters
* @return mixed|Application
*
* @copyright Taylor Otwell
* @link https://github.com/laravel/framework/blob/8.x/src/Illuminate/Foundation/helpers.php
*/
function app($abstract = null, array $parameters = [])
{
if (is_null($abstract)) {
return Application::getInstance();
}
return Application::getInstance()->make($abstract, $parameters);
}
/**
* Get the path to the application folder.
*
* @param string $path
* @return string
*
* @copyright Taylor Otwell
* @link https://github.com/laravel/framework/blob/8.x/src/Illuminate/Foundation/helpers.php
*/
function app_path($path = '')
{
return app()->path($path);
}
/**
* Get asset from manifest
*
* @param string $asset
"sage.view"
[]
<html <?php language_attributes(); ?>>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<?php wp_head(); ?>
</head>
<?php
$colour_class = get_field('page_colour');
$colour_class = 'theme-colour-'. $colour_class;
?>
<body <?php body_class( $colour_class ); ?>>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<div id="app">
<?php echo \Roots\view(\Roots\app('sage.view'), \Roots\app('sage.data'))->render(); ?>
</div>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
<script type="text/javascript" src="<?php bloginfo('template_directory');?>/public/scripts/jquery-3.6.3.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory');?>/public/scripts/new.js"></script>
</body>
</html>
"sage.view"
}
break;
}
}
if ( ! $template ) {
$template = get_index_template();
}
/**
* Filters the path of the current template before including it.
*
* @since 3.0.0
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
}
return;
}
"/home/domains/vol4/833/2816833/user/htdocs/past-and-present/wp-content/themes/trent-valley/index.php"
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
"/home/domains/vol4/833/2816833/user/htdocs/past-and-present/wp-includes/template-loader.php"
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
"/home/domains/vol4/833/2816833/user/htdocs/past-and-present/wp-blog-header.php"
| Key | Value |
| SERVER_SOFTWARE | "Apache"
|
| REQUEST_URI | "/past-and-present/"
|
| PHP_FCGI_CHILDREN | "0"
|
| PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
|
| PWD | "/var/www/fcgi"
|
| SHLVL | "0"
|
| PHP_FCGI_MAX_REQUESTS | "100"
|
| ORIG_SCRIPT_NAME | "/fcgi-bin/php83-cgi"
|
| ORIG_PATH_TRANSLATED | "/home/domains/vol4/833/2816833/user/htdocs/past-and-present/index.php"
|
| ORIG_PATH_INFO | "/past-and-present/index.php"
|
| ORIG_SCRIPT_FILENAME | "/var/www/fcgi/php83-cgi"
|
| SCRIPT_NAME | "/past-and-present/index.php"
|
| QUERY_STRING | "" |
| REQUEST_METHOD | "GET"
|
| SERVER_PROTOCOL | "HTTP/1.1"
|
| GATEWAY_INTERFACE | "CGI/1.1"
|
| REDIRECT_URL | "/past-and-present/index.php"
|
| REMOTE_PORT | "27555"
|
| SCRIPT_FILENAME | "/home/domains/vol4/833/2816833/user/htdocs/past-and-present/index.php"
|
| SERVER_ADMIN | "admin@thetrentvalley.org.uk"
|
| CONTEXT_DOCUMENT_ROOT | "/var/www/fcgi/"
|
| CONTEXT_PREFIX | "/fcgi-bin/"
|
| REQUEST_SCHEME | "https"
|
| DOCUMENT_ROOT | "/home/domains/vol4/833/2816833/user/htdocs"
|
| REMOTE_ADDR | "216.73.216.124"
|
| SERVER_PORT | "443"
|
| SERVER_ADDR | "10.10.121.217"
|
| SERVER_NAME | "www.thetrentvalley.org.uk"
|
| SERVER_SIGNATURE | "" |
| HTTP_REFERER | "https://www.thetrentvalley.org.uk/past-and-present"
|
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_CONNECTION | "close"
|
| HTTP_X_URL_SCHEME | "https"
|
| HTTP_X_FORWARDED_PROTO | "https"
|
| HTTP_X_REAL_IP | "216.73.216.124"
|
| HTTP_X_FORWARDED_HOST | "www.thetrentvalley.org.uk"
|
| HTTP_HOST | "www.thetrentvalley.org.uk"
|
| SSL_SESSION_RESUMED | "Resumed"
|
| SSL_SESSION_ID | "ff3134a652eb6e1ebc5fdf27e346b1c3bb3d5804b006f60cbf6934a482d5cca9"
|
| SSL_SERVER_A_SIG | "sha256WithRSAEncryption"
|
| SSL_SERVER_A_KEY | "rsaEncryption"
|
| SSL_SERVER_I_DN | "CN=clusteredwebhosting.hostingp3.local,L=Gloucester,ST=Gloucestershire,OU=NOC,O=Fasthosts Internet Limited,C=GB"
|
| SSL_SERVER_S_DN | "CN=clusteredwebhosting.hostingp3.local,L=Gloucester,ST=Gloucestershire,OU=NOC,O=Fasthosts Internet Limited,C=GB"
|
| SSL_SERVER_V_END | "Aug 8 15:17:29 2019 GMT"
|
| SSL_SERVER_V_START | "Aug 8 15:17:29 2018 GMT"
|
| SSL_SERVER_M_SERIAL | "E5E20F616EFF285D"
|
| SSL_SERVER_M_VERSION | "1"
|
| SSL_CLIENT_VERIFY | "NONE"
|
| SSL_CIPHER_ALGKEYSIZE | "256"
|
| SSL_CIPHER_USEKEYSIZE | "256"
|
| SSL_CIPHER_EXPORT | "false"
|
| SSL_CIPHER | "ECDHE-RSA-AES256-GCM-SHA384"
|
| SSL_COMPRESS_METHOD | "NULL"
|
| SSL_SECURE_RENEG | "true"
|
| SSL_PROTOCOL | "TLSv1.2"
|
| SSL_VERSION_LIBRARY | "OpenSSL/1.0.2k-fips"
|
| SSL_VERSION_INTERFACE | "mod_ssl/2.4.6"
|
| SSL_SERVER_I_DN_CN | "clusteredwebhosting.hostingp3.local"
|
| SSL_SERVER_I_DN_L | "Gloucester"
|
| SSL_SERVER_I_DN_ST | "Gloucestershire"
|
| SSL_SERVER_I_DN_OU | "NOC"
|
| SSL_SERVER_I_DN_O | "Fasthosts Internet Limited"
|
| SSL_SERVER_I_DN_C | "GB"
|
| SSL_SERVER_S_DN_CN | "clusteredwebhosting.hostingp3.local"
|
| SSL_SERVER_S_DN_L | "Gloucester"
|
| SSL_SERVER_S_DN_ST | "Gloucestershire"
|
| SSL_SERVER_S_DN_OU | "NOC"
|
| SSL_SERVER_S_DN_O | "Fasthosts Internet Limited"
|
| SSL_SERVER_S_DN_C | "GB"
|
| HTTPS | "on"
|
| UNIQUE_ID | "aWYx7oy@UsBLoB4PdkZkXAAAAAY"
|
| REDIRECT_STATUS | "200"
|
| REDIRECT_HANDLER | "application/x-httpd-php83"
|
| REDIRECT_SSL_SESSION_RESUMED | "Resumed"
|
| REDIRECT_SSL_SESSION_ID | "ff3134a652eb6e1ebc5fdf27e346b1c3bb3d5804b006f60cbf6934a482d5cca9"
|
| REDIRECT_SSL_SERVER_A_SIG | "sha256WithRSAEncryption"
|
| REDIRECT_SSL_SERVER_A_KEY | "rsaEncryption"
|
| REDIRECT_SSL_SERVER_I_DN | "CN=clusteredwebhosting.hostingp3.local,L=Gloucester,ST=Gloucestershire,OU=NOC,O=Fasthosts Internet Limited,C=GB"
|
| REDIRECT_SSL_SERVER_S_DN | "CN=clusteredwebhosting.hostingp3.local,L=Gloucester,ST=Gloucestershire,OU=NOC,O=Fasthosts Internet Limited,C=GB"
|
| REDIRECT_SSL_SERVER_V_END | "Aug 8 15:17:29 2019 GMT"
|
| REDIRECT_SSL_SERVER_V_START | "Aug 8 15:17:29 2018 GMT"
|
| REDIRECT_SSL_SERVER_M_SERIAL | "E5E20F616EFF285D"
|
| REDIRECT_SSL_SERVER_M_VERSION | "1"
|
| REDIRECT_SSL_CLIENT_VERIFY | "NONE"
|
| REDIRECT_SSL_CIPHER_ALGKEYSIZE | "256"
|
| REDIRECT_SSL_CIPHER_USEKEYSIZE | "256"
|
| REDIRECT_SSL_CIPHER_EXPORT | "false"
|
| REDIRECT_SSL_CIPHER | "ECDHE-RSA-AES256-GCM-SHA384"
|
| REDIRECT_SSL_COMPRESS_METHOD | "NULL"
|
| REDIRECT_SSL_SECURE_RENEG | "true"
|
| REDIRECT_SSL_PROTOCOL | "TLSv1.2"
|
| REDIRECT_SSL_VERSION_LIBRARY | "OpenSSL/1.0.2k-fips"
|
| REDIRECT_SSL_VERSION_INTERFACE | "mod_ssl/2.4.6"
|
| REDIRECT_SSL_SERVER_I_DN_CN | "clusteredwebhosting.hostingp3.local"
|
| REDIRECT_SSL_SERVER_I_DN_L | "Gloucester"
|
| REDIRECT_SSL_SERVER_I_DN_ST | "Gloucestershire"
|
| REDIRECT_SSL_SERVER_I_DN_OU | "NOC"
|
| REDIRECT_SSL_SERVER_I_DN_O | "Fasthosts Internet Limited"
|
| REDIRECT_SSL_SERVER_I_DN_C | "GB"
|
| REDIRECT_SSL_SERVER_S_DN_CN | "clusteredwebhosting.hostingp3.local"
|
| REDIRECT_SSL_SERVER_S_DN_L | "Gloucester"
|
| REDIRECT_SSL_SERVER_S_DN_ST | "Gloucestershire"
|
| REDIRECT_SSL_SERVER_S_DN_OU | "NOC"
|
| REDIRECT_SSL_SERVER_S_DN_O | "Fasthosts Internet Limited"
|
| REDIRECT_SSL_SERVER_S_DN_C | "GB"
|
| REDIRECT_HTTPS | "on"
|
| REDIRECT_HTTP_AUTHORIZATION | "" |
| REDIRECT_UNIQUE_ID | "aWYx7oy@UsBLoB4PdkZkXAAAAAY"
|
| FCGI_ROLE | "RESPONDER"
|
| PHP_SELF | "/past-and-present/index.php"
|
| REQUEST_TIME_FLOAT | 1768305134.7724
|
| REQUEST_TIME | 1768305134
|
| Key | Value |
| PHP_FCGI_CHILDREN | "0"
|
| PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
|
| PWD | "/var/www/fcgi"
|
| SHLVL | "0"
|
| PHP_FCGI_MAX_REQUESTS | "100"
|
| ORIG_SCRIPT_NAME | "/fcgi-bin/php83-cgi"
|
| ORIG_PATH_TRANSLATED | "/home/domains/vol4/833/2816833/user/htdocs/past-and-present/index.php"
|
| ORIG_PATH_INFO | "/past-and-present/index.php"
|
| ORIG_SCRIPT_FILENAME | "/var/www/fcgi/php83-cgi"
|
| SCRIPT_NAME | "/past-and-present/index.php"
|
| REQUEST_URI | "/past-and-present/"
|
| QUERY_STRING | "" |
| REQUEST_METHOD | "GET"
|
| SERVER_PROTOCOL | "HTTP/1.1"
|
| GATEWAY_INTERFACE | "CGI/1.1"
|
| REDIRECT_URL | "/past-and-present/index.php"
|
| REMOTE_PORT | "27555"
|
| SCRIPT_FILENAME | "/home/domains/vol4/833/2816833/user/htdocs/past-and-present/index.php"
|
| SERVER_ADMIN | "admin@thetrentvalley.org.uk"
|
| CONTEXT_DOCUMENT_ROOT | "/var/www/fcgi/"
|
| CONTEXT_PREFIX | "/fcgi-bin/"
|
| REQUEST_SCHEME | "https"
|
| DOCUMENT_ROOT | "/home/domains/vol4/833/2816833/user/htdocs"
|
| REMOTE_ADDR | "216.73.216.124"
|
| SERVER_PORT | "443"
|
| SERVER_ADDR | "10.10.121.217"
|
| SERVER_NAME | "www.thetrentvalley.org.uk"
|
| SERVER_SOFTWARE | "Apache"
|
| SERVER_SIGNATURE | "" |
| HTTP_REFERER | "https://www.thetrentvalley.org.uk/past-and-present"
|
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_CONNECTION | "close"
|
| HTTP_X_URL_SCHEME | "https"
|
| HTTP_X_FORWARDED_PROTO | "https"
|
| HTTP_X_REAL_IP | "216.73.216.124"
|
| HTTP_X_FORWARDED_HOST | "www.thetrentvalley.org.uk"
|
| HTTP_HOST | "www.thetrentvalley.org.uk"
|
| SSL_SESSION_RESUMED | "Resumed"
|
| SSL_SESSION_ID | "ff3134a652eb6e1ebc5fdf27e346b1c3bb3d5804b006f60cbf6934a482d5cca9"
|
| SSL_SERVER_A_SIG | "sha256WithRSAEncryption"
|
| SSL_SERVER_A_KEY | "rsaEncryption"
|
| SSL_SERVER_I_DN | "CN=clusteredwebhosting.hostingp3.local,L=Gloucester,ST=Gloucestershire,OU=NOC,O=Fasthosts Internet Limited,C=GB"
|
| SSL_SERVER_S_DN | "CN=clusteredwebhosting.hostingp3.local,L=Gloucester,ST=Gloucestershire,OU=NOC,O=Fasthosts Internet Limited,C=GB"
|
| SSL_SERVER_V_END | "Aug 8 15:17:29 2019 GMT"
|
| SSL_SERVER_V_START | "Aug 8 15:17:29 2018 GMT"
|
| SSL_SERVER_M_SERIAL | "E5E20F616EFF285D"
|
| SSL_SERVER_M_VERSION | "1"
|
| SSL_CLIENT_VERIFY | "NONE"
|
| SSL_CIPHER_ALGKEYSIZE | "256"
|
| SSL_CIPHER_USEKEYSIZE | "256"
|
| SSL_CIPHER_EXPORT | "false"
|
| SSL_CIPHER | "ECDHE-RSA-AES256-GCM-SHA384"
|
| SSL_COMPRESS_METHOD | "NULL"
|
| SSL_SECURE_RENEG | "true"
|
| SSL_PROTOCOL | "TLSv1.2"
|
| SSL_VERSION_LIBRARY | "OpenSSL/1.0.2k-fips"
|
| SSL_VERSION_INTERFACE | "mod_ssl/2.4.6"
|
| SSL_SERVER_I_DN_CN | "clusteredwebhosting.hostingp3.local"
|
| SSL_SERVER_I_DN_L | "Gloucester"
|
| SSL_SERVER_I_DN_ST | "Gloucestershire"
|
| SSL_SERVER_I_DN_OU | "NOC"
|
| SSL_SERVER_I_DN_O | "Fasthosts Internet Limited"
|
| SSL_SERVER_I_DN_C | "GB"
|
| SSL_SERVER_S_DN_CN | "clusteredwebhosting.hostingp3.local"
|
| SSL_SERVER_S_DN_L | "Gloucester"
|
| SSL_SERVER_S_DN_ST | "Gloucestershire"
|
| SSL_SERVER_S_DN_OU | "NOC"
|
| SSL_SERVER_S_DN_O | "Fasthosts Internet Limited"
|
| SSL_SERVER_S_DN_C | "GB"
|
| HTTPS | "on"
|
| UNIQUE_ID | "aWYx7oy@UsBLoB4PdkZkXAAAAAY"
|
| REDIRECT_STATUS | "200"
|
| REDIRECT_HANDLER | "application/x-httpd-php83"
|
| REDIRECT_SSL_SESSION_RESUMED | "Resumed"
|
| REDIRECT_SSL_SESSION_ID | "ff3134a652eb6e1ebc5fdf27e346b1c3bb3d5804b006f60cbf6934a482d5cca9"
|
| REDIRECT_SSL_SERVER_A_SIG | "sha256WithRSAEncryption"
|
| REDIRECT_SSL_SERVER_A_KEY | "rsaEncryption"
|
| REDIRECT_SSL_SERVER_I_DN | "CN=clusteredwebhosting.hostingp3.local,L=Gloucester,ST=Gloucestershire,OU=NOC,O=Fasthosts Internet Limited,C=GB"
|
| REDIRECT_SSL_SERVER_S_DN | "CN=clusteredwebhosting.hostingp3.local,L=Gloucester,ST=Gloucestershire,OU=NOC,O=Fasthosts Internet Limited,C=GB"
|
| REDIRECT_SSL_SERVER_V_END | "Aug 8 15:17:29 2019 GMT"
|
| REDIRECT_SSL_SERVER_V_START | "Aug 8 15:17:29 2018 GMT"
|
| REDIRECT_SSL_SERVER_M_SERIAL | "E5E20F616EFF285D"
|
| REDIRECT_SSL_SERVER_M_VERSION | "1"
|
| REDIRECT_SSL_CLIENT_VERIFY | "NONE"
|
| REDIRECT_SSL_CIPHER_ALGKEYSIZE | "256"
|
| REDIRECT_SSL_CIPHER_USEKEYSIZE | "256"
|
| REDIRECT_SSL_CIPHER_EXPORT | "false"
|
| REDIRECT_SSL_CIPHER | "ECDHE-RSA-AES256-GCM-SHA384"
|
| REDIRECT_SSL_COMPRESS_METHOD | "NULL"
|
| REDIRECT_SSL_SECURE_RENEG | "true"
|
| REDIRECT_SSL_PROTOCOL | "TLSv1.2"
|
| REDIRECT_SSL_VERSION_LIBRARY | "OpenSSL/1.0.2k-fips"
|
| REDIRECT_SSL_VERSION_INTERFACE | "mod_ssl/2.4.6"
|
| REDIRECT_SSL_SERVER_I_DN_CN | "clusteredwebhosting.hostingp3.local"
|
| REDIRECT_SSL_SERVER_I_DN_L | "Gloucester"
|
| REDIRECT_SSL_SERVER_I_DN_ST | "Gloucestershire"
|
| REDIRECT_SSL_SERVER_I_DN_OU | "NOC"
|
| REDIRECT_SSL_SERVER_I_DN_O | "Fasthosts Internet Limited"
|
| REDIRECT_SSL_SERVER_I_DN_C | "GB"
|
| REDIRECT_SSL_SERVER_S_DN_CN | "clusteredwebhosting.hostingp3.local"
|
| REDIRECT_SSL_SERVER_S_DN_L | "Gloucester"
|
| REDIRECT_SSL_SERVER_S_DN_ST | "Gloucestershire"
|
| REDIRECT_SSL_SERVER_S_DN_OU | "NOC"
|
| REDIRECT_SSL_SERVER_S_DN_O | "Fasthosts Internet Limited"
|
| REDIRECT_SSL_SERVER_S_DN_C | "GB"
|
| REDIRECT_HTTPS | "on"
|
| REDIRECT_HTTP_AUTHORIZATION | "" |
| REDIRECT_UNIQUE_ID | "aWYx7oy@UsBLoB4PdkZkXAAAAAY"
|
| FCGI_ROLE | "RESPONDER"
|