Jun. 30, 2024
In this special 4th of July message we are reminded not only of the freedoms we have as residents of the United States of America, but of the ultimate freedom from sin we are given only through Jesus Christ.
APPPATH/views/include-templates/2.0/header1.php [ 168 ]
163
164 switch (true) {
165 case ($og_des_len <= 160):
166 $page_description = $page_description;
167 break;
168 case (strlen($og_des_array[0].'.'.$og_des_array[1].'.'.$og_des_array[2].'.'.$og_des_array[3].'.') <= 160 && strlen($og_des_array[0].'.'.$og_des_array[1].'.'.$og_des_array[2].'.'.$og_des_array[3].'.') >= 100):
169 $page_description = $og_des_array[0].'.'.$og_des_array[1].'.'.$og_des_array[2].'.'.$og_des_array[3].'.';
170 break;
171 case (strlen($og_des_array[0].'.'.$og_des_array[1].'.'.$og_des_array[2].'.') <= 160 && strlen($og_des_array[0].'.'.$og_des_array[1].'.'.$og_des_array[2].'.') >= 100):
172 $page_description = $og_des_array[0].'.'.$og_des_array[1].'.'.$og_des_array[2].'.';
173 break;
APPPATH/views/include-templates/2.0/header1.php [ 168 ] » Kohana_Core::error_handler()
163
164 switch (true) {
165 case ($og_des_len <= 160):
166 $page_description = $page_description;
167 break;
168 case (strlen($og_des_array[0].'.'.$og_des_array[1].'.'.$og_des_array[2].'.'.$og_des_array[3].'.') <= 160 && strlen($og_des_array[0].'.'.$og_des_array[1].'.'.$og_des_array[2].'.'.$og_des_array[3].'.') >= 100):
169 $page_description = $og_des_array[0].'.'.$og_des_array[1].'.'.$og_des_array[2].'.'.$og_des_array[3].'.';
170 break;
171 case (strlen($og_des_array[0].'.'.$og_des_array[1].'.'.$og_des_array[2].'.') <= 160 && strlen($og_des_array[0].'.'.$og_des_array[1].'.'.$og_des_array[2].'.') >= 100):
172 $page_description = $og_des_array[0].'.'.$og_des_array[1].'.'.$og_des_array[2].'.';
173 break;
MODPATH/commonusersite/classes/Kohana/View.php [ 85 ] » include(arguments)
0 | string(76) "/var/www/html/application/CHsiteapps/views/include-templates/2.0/header1.php" |
80 ob_start();
81
82 try
83 {
84 // Load the view within the current scope
85 include $kohana_view_filename;
86 }
87 catch (Exception $e)
88 {
89 // Delete the output buffer
90 ob_end_clean();
MODPATH/commonusersite/classes/Kohana/View.php [ 382 ] » Kohana_View::capture()
377 {
378 throw new View_Exception('You must set the file to use within your view before rendering');
379 }
380
381 // Combine local and global data and capture the output
382 return View::capture($this->_file, $this->_data);
383 }
384
385 }
MODPATH/commonusersite/classes/Kohana/View.php [ 259 ] » Kohana_View->render()
254 */
255 public function __toString()
256 {
257 try
258 {
259 return $this->render();
260 }
261 catch (Exception $e)
262 {
263 /**
264 * Display the exception message.
APPPATH/views/site-templates/2.0/ezra/template-page.php [ 2 ] » Kohana_View->__toString()
1 <?php //if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler"); else ob_start(); ?>
2 <?php echo $header_template;?>
3 <?php echo $content_template;?>
4 <?php echo $footer_template;?>
5 <?php //mysql_close();?>
MODPATH/commonusersite/classes/Kohana/View.php [ 85 ] » include(arguments)
0 | string(84) "/var/www/html/application/CHsiteapps/views/site-templates/2.0/ezra/template-page.php" |
80 ob_start();
81
82 try
83 {
84 // Load the view within the current scope
85 include $kohana_view_filename;
86 }
87 catch (Exception $e)
88 {
89 // Delete the output buffer
90 ob_end_clean();
MODPATH/commonusersite/classes/Kohana/View.php [ 382 ] » Kohana_View::capture()
377 {
378 throw new View_Exception('You must set the file to use within your view before rendering');
379 }
380
381 // Combine local and global data and capture the output
382 return View::capture($this->_file, $this->_data);
383 }
384
385 }
MODPATH/commonusersite/classes/Kohana/View.php [ 259 ] » Kohana_View->render()
254 */
255 public function __toString()
256 {
257 try
258 {
259 return $this->render();
260 }
261 catch (Exception $e)
262 {
263 /**
264 * Display the exception message.
MODPATH/commonusersite/classes/HTMLmin.php [ 73 ] » Kohana_View->__toString()
68 *
69 * @return null
70 */
71 public function __construct($html, $options = array())
72 {
73 $this->_html = str_replace("\r\n", "\n", trim((string) $html));
74 if (isset($options['xhtml'])) {
75 $this->_isXhtml = (bool)$options['xhtml'];
76 }
77 if (isset($options['cssMinifier'])) {
78 $this->_cssMinifier = $options['cssMinifier'];
MODPATH/commonusersite/classes/HTMLmin.php [ 46 ] » HTMLmin->__construct()
41 * unset, minify will sniff for an XHTML doctype.
42 *
43 * @return string
44 */
45 public static function minify($html, $options = array()) {
46 $min = new self($html, $options);
47 return $min->process();
48 }
49
50
51 /**
APPPATH/classes/Controller/Site.php [ 1133 ] » HTMLmin::minify()
1128
1129 }
1130
1131 }
1132
1133 $this->response->body(HTMLmin::minify($this->template));
1134 /** CLEAN UP VARIABLE */
1135 unset($this->activeTheme);
1136 unset($this->template);
1137 unset(Database::$instances['churchspring']);
1138 /** CLEAN UP VARIABLE */
APPPATH/classes/Controller/sermons.php [ 9 ] » Controller_Site->after()
4
5 public $section;
6 public $auto_render;
7
8 public function after() {
9 parent::after();
10 }
11
12 public function action_index() {
13 $module = $this->request->param('urlRoute');
14 $reqact = $this->request->param('reqact');
SYSPATH/classes/Kohana/Controller.php [ 109 ] » Controller_sermons->after()
104
105 // Execute the action itself
106 $this->{$action}();
107
108 // Execute the "after action" method
109 $this->after();
110
111 // Return the response
112 return $this->response;
113 }
114
{PHP internal call} » Kohana_Controller->execute()
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 84 ] » ReflectionMethod->invoke()
79
80 // Create a new instance of the controller
81 $controller = $class->newInstance($request, $response);
82
83 // Run the controller's execute() method
84 $response = $class->getMethod('execute')->invoke($controller);
85
86 if (! $response instanceof Response) {
87 // Controller failed to return a Response.
88 throw new Kohana_Exception('Controller failed to return a Response');
89 }
SYSPATH/classes/Kohana/Request/Client.php [ 117 ] » Kohana_Request_Client_Internal->execute_request()
112
113 if (($cache = $this->cache()) instanceof HTTP_Cache) {
114 return $cache->execute($this, $request, $response);
115 }
116
117 $response = $this->execute_request($request, $response);
118
119 // Execute response callbacks
120 foreach ($this->header_callbacks() as $header => $callback) {
121 if ($response->headers($header)) {
122 $cb_result = call_user_func($callback, $request, $response, $this);
SYSPATH/classes/Kohana/Request.php [ 869 ] » Kohana_Request_Client->execute()
864 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', [
865 ':uri' => $this->_uri,
866 ]);
867 }
868
869 return $this->_client->execute($this);
870 }
871
872 /**
873 * Returns whether this request is the initial request KO7 received.
874 * Can be used to test for sub requests.
DOCROOT/sites/index.php [ 117 ] » Kohana_Request->execute()
112 /**
113 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO'].
114 * If no source is specified, the URI will be automatically detected.
115 */
116 echo Request::factory(TRUE, [], FALSE)
117 ->execute()
118 ->send_headers(TRUE)
119 ->body();
120 }
DOCROOT/sites/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/Kohana/Core.php |
SYSPATH/classes/Kohana.php |
SYSPATH/classes/I18n.php |
SYSPATH/classes/Kohana/I18n.php |
SYSPATH/classes/HTTP.php |
SYSPATH/classes/Kohana/HTTP.php |
SYSPATH/classes/Kohana/Exception.php |
SYSPATH/classes/Kohana/Kohana/Exception.php |
SYSPATH/classes/Log.php |
SYSPATH/classes/Kohana/Log.php |
SYSPATH/classes/Config.php |
SYSPATH/classes/Kohana/Config.php |
SYSPATH/classes/Config/File.php |
SYSPATH/classes/Kohana/Config/File.php |
SYSPATH/classes/Kohana/Config/File/Reader.php |
SYSPATH/classes/Kohana/Config/Reader.php |
SYSPATH/classes/Kohana/Config/Source.php |
MODPATH/commonusersite/init.php |
SYSPATH/classes/Route.php |
SYSPATH/classes/Kohana/Route.php |
MODPATH/generatepassword/init.php |
MODPATH/smtpemail/init.php |
MODPATH/smtpemail/vendor/PHPMailer/PHPMailerAutoload.php |
MODPATH/plesk/init.php |
MODPATH/webinarjam/init.php |
MODPATH/webinarjam/vendor/apicall/apicall.php |
MODPATH/webinarjam/vendor/apicall/responses.php |
MODPATH/webinarjam/vendor/apicall/responseparser/factory.php |
MODPATH/webinarjam/vendor/apicall/responseparser/abstract.php |
MODPATH/facebook/init.php |
MODPATH/facebook/vendor/autoload.php |
MODPATH/facebook/vendor/polyfills.php |
MODPATH/twitter/init.php |
MODPATH/twitter/vendor/autoload.php |
MODPATH/activecampaign/init.php |
MODPATH/activecampaign/vendor/ActiveCampaign.class.php |
MODPATH/activecampaign/vendor/config.php |
MODPATH/activecampaign/vendor/Connector.class.php |
MODPATH/activecampaign/vendor/exceptions/RequestException.php |
MODPATH/activecampaign/vendor/Account.class.php |
MODPATH/activecampaign/vendor/Auth.class.php |
MODPATH/activecampaign/vendor/Automation.class.php |
MODPATH/activecampaign/vendor/Campaign.class.php |
MODPATH/activecampaign/vendor/Contact.class.php |
MODPATH/activecampaign/vendor/Deal.class.php |
MODPATH/activecampaign/vendor/Design.class.php |
MODPATH/activecampaign/vendor/Form.class.php |
MODPATH/activecampaign/vendor/Group.class.php |
MODPATH/activecampaign/vendor/List.class.php |
MODPATH/activecampaign/vendor/Message.class.php |
MODPATH/activecampaign/vendor/Organization.class.php |
MODPATH/activecampaign/vendor/Segment.class.php |
MODPATH/activecampaign/vendor/Settings.class.php |
MODPATH/activecampaign/vendor/Subscriber.class.php |
MODPATH/activecampaign/vendor/Tag.class.php |
MODPATH/activecampaign/vendor/Tracking.class.php |
MODPATH/activecampaign/vendor/User.class.php |
MODPATH/activecampaign/vendor/Webhook.class.php |
MODPATH/jwt/init.php |
SYSPATH/classes/Cookie.php |
SYSPATH/classes/Kohana/Cookie.php |
MODPATH/database/classes/DB.php |
MODPATH/database/classes/Kohana/DB.php |
MODPATH/database/classes/Database/Query/Builder/Select.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Select.php |
MODPATH/database/classes/Database/Query/Builder/Where.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Where.php |
MODPATH/database/classes/Database/Query/Builder.php |
MODPATH/database/classes/Kohana/Database/Query/Builder.php |
MODPATH/database/classes/Database/Query.php |
MODPATH/database/classes/Kohana/Database/Query.php |
MODPATH/database/classes/Database.php |
MODPATH/database/classes/Kohana/Database.php |
MODPATH/database/config/database.php |
SYSPATH/classes/Arr.php |
SYSPATH/classes/Kohana/Arr.php |
APPPATH/config/database.php |
SYSPATH/classes/Config/Group.php |
SYSPATH/classes/Kohana/Config/Group.php |
MODPATH/database/classes/Database/MySQLi.php |
MODPATH/database/classes/Kohana/Database/MySQLi.php |
MODPATH/database/classes/Database/MySQLi/Result.php |
MODPATH/database/classes/Kohana/Database/MySQLi/Result.php |
MODPATH/database/classes/Database/Result.php |
MODPATH/database/classes/Kohana/Database/Result.php |
APPPATH/classes/Redirect.php |
MODPATH/database/classes/Database/Expression.php |
MODPATH/database/classes/Kohana/Database/Expression.php |
SYSPATH/classes/Request.php |
SYSPATH/classes/Kohana/Request.php |
SYSPATH/classes/HTTP/Request.php |
SYSPATH/classes/Kohana/HTTP/Request.php |
SYSPATH/classes/HTTP/Message.php |
SYSPATH/classes/Kohana/HTTP/Message.php |
SYSPATH/classes/HTTP/Header.php |
SYSPATH/classes/Kohana/HTTP/Header.php |
SYSPATH/classes/Request/Client/Internal.php |
SYSPATH/classes/Kohana/Request/Client/Internal.php |
SYSPATH/classes/Request/Client.php |
SYSPATH/classes/Kohana/Request/Client.php |
SYSPATH/classes/Response.php |
SYSPATH/classes/Kohana/Response.php |
SYSPATH/classes/HTTP/Response.php |
SYSPATH/classes/Kohana/HTTP/Response.php |
APPPATH/classes/Controller/sermons.php |
APPPATH/classes/Controller/Site.php |
MODPATH/commonusersite/classes/Controller.php |
SYSPATH/classes/Kohana/Controller.php |
APPPATH/classes/General.php |
APPPATH/config/site.php |
APPPATH/classes/Login.php |
MODPATH/commonusersite/classes/Session.php |
SYSPATH/classes/View.php |
MODPATH/commonusersite/classes/Kohana/View.php |
SYSPATH/classes/Error/Exception.php |
SYSPATH/classes/Kohana/Error/Exception.php |
APPPATH/classes/Setting.php |
APPPATH/classes/Socialschedule.php |
APPPATH/classes/Bible.php |
MODPATH/stripe/config/stripe.php |
APPPATH/config/stripe.php |
APPPATH/classes/Menu.php |
APPPATH/classes/Site.php |
MODPATH/database/classes/Database/Query/Builder/Join.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Join.php |
MODPATH/amazons3/config/amazon.php |
APPPATH/config/amazon.php |
APPPATH/config/templates.php |
SYSPATH/classes/Security.php |
SYSPATH/classes/Kohana/Security.php |
MODPATH/cache/classes/Cache.php |
MODPATH/cache/classes/Kohana/Cache.php |
MODPATH/cache/config/cache.php |
APPPATH/config/cache.php |
MODPATH/cache/classes/Cache/Redis.php |
MODPATH/cache/classes/Kohana/Cache/Redis.php |
MODPATH/cache/classes/Cache/Tagging.php |
MODPATH/cache/classes/Kohana/Cache/Tagging.php |
APPPATH/classes/Sermon.php |
MODPATH/commonusersite/classes/HTMLmin.php |
APPPATH/views/site-templates/2.0/ezra/template-page.php |
APPPATH/views/include-templates/2.0/header1.php |
SYSPATH/classes/Debug.php |
SYSPATH/classes/Kohana/Debug.php |
SYSPATH/views/kohana/error.php |
SYSPATH/classes/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
Core |
date |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
json |
random |
Reflection |
SPL |
session |
standard |
sodium |
apache2handler |
mysqlnd |
PDO |
xml |
bcmath |
calendar |
ctype |
curl |
dom |
mbstring |
FFI |
fileinfo |
ftp |
gd |
gettext |
iconv |
igbinary |
imagick |
intl |
exif |
mcrypt |
mysqli |
newrelic |
pdo_mysql |
Phar |
posix |
readline |
redis |
shmop |
SimpleXML |
soap |
sockets |
sysvmsg |
sysvsem |
sysvshm |
tokenizer |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
Zend OPcache |
currSiteID | string(4) "3228" |
prev_template_file | string(0) "" |
usertime | object stdClass(2) |
facebook_access_token | string(200) "EAACvehEdW8IBOZBx6Mn7v07xPYgQRlgqJr8kV6t3ZBhIgsSmUPHQMhZApSEZCzSyXu2U50ODD2p84mZCzmhFnAvCGA9p78OUCBZCnjQY60YCZCCNyzbKLc4NXsKnDKR …" |
twitter_oauth_token | string(50) "1682549738384523266-1jrOoxKiEJLamZZxxvr5lWESHWyuLM" |
twitter_oauth_token_secret | string(45) "8CM0J9TBUkcJFCKXeEyDR8xgOba06eozjHlw55Gz7ersM" |
fb_user_id | string(15) "116302768393943" |
fb_screen_name | string(22) "Calvary Baptist Church" |
fb_img_profile | string(300) "https://scontent-iad3-2.xx.fbcdn.net/v/t39.30808-1/326199897_641665257713343_5979131527992241729_n.jpg?stp=cp0_dst-jpg_p50x50&_n …" |
tw_user_id | string(19) "1682549738384523266" |
tw_screen_name | string(12) "CBCSedaliaMo" |
activeTheme | array(108) ( "BibleType" => string(3) "ESV" "siteID" => string(4) "3228" "favicon" => string(74) "https://chusermedia.s3.amazonaws.com/3228_favicon_78268_Calvary-Logo-3.png" "themeID" => string(2) "36" "themeFile" => string(8) "2.0/ezra" "themeFileOri" => string(4) "ezra" "themeVersion" => string(3) "2.0" "navbg_transparent" => string(1) "T" "btn_transparent" => string(1) "F" "logo_bg" => string(1) "F" "themeccopacity1" => string(4) "0.22" "themecc1" => string(7) "#f25900" "themeccopacity2" => string(4) "0.99" "themecc2" => string(7) "#211202" "themeccopacity3" => string(0) "" "themecc3" => string(13) "swatch-color1" "themeccopacity4" => string(4) "0.22" "themecc4" => string(7) "#f23000" "themeccopacity5" => string(0) "" "themecc5" => string(0) "" "themeccopacity6" => string(0) "" "themecc6" => string(0) "" "themeccopacity7" => string(0) "" "themecc7" => string(13) "swatch-color1" "themefootercontent" => string(10) "font-light" "themeSiteType" => string(5) "Users" "accountID" => string(5) "78268" "themeherocontent" => string(10) "font-light" "thememidbarcontent" => string(10) "font-light" "themehomecontent" => string(10) "font-light" "themeeventcontent" => string(10) "font-light" "themesermoncontent" => string(0) "" "thememapcontent" => string(0) "" "giveheadcontent" => string(0) "" "giveheadccopacity" => string(0) "" "giveheadcc" => string(0) "" "givecontent" => string(0) "" "giveccopacity" => string(0) "" "givecc" => string(0) "" "404headcontent" => string(0) "" "404headccopacity" => string(0) "" "404headcc" => string(0) "" "404content" => string(0) "" "404ccopacity" => string(0) "" "404cc" => string(0) "" "privacyheadcontent" => string(0) "" "privacyheadccopacity" => string(0) "" "privacyheadcc" => string(0) "" "privacycontent" => string(0) "" "privacyccopacity" => string(0) "" "privacycc" => string(0) "" "chdirheadcontent" => string(0) "" "chdirheadccopacity" => string(0) "" "chdirheadcc" => string(0) "" "chdircontent" => string(0) "" "chdirccopacity" => string(0) "" "chdircc" => string(0) "" "profileheadcontent" => string(0) "" "profileheadccopacity" => string(0) "" "profileheadcc" => string(0) "" "profilecontent" => string(0) "" "profileccopacity" => string(0) "" "profilecc" => string(0) "" "settingheadcontent" => string(0) "" "settingheadccopacity" => string(0) "" "settingheadcc" => string(0) "" "settingcontent" => string(0) "" "settingccopacity" => string(0) "" "settingcc" => string(0) "" "chfb" => string(38) "https://facebook.com/CalvaryBCSedalia/" "chtwitter" => string(26) "https://x.com/CBCSedaliaMo" "chgoo" => string(0) "" "chyoutube" => string(50) "https://www.youtube.com/@CBCSedalia-BC1015/streams" "chinstagram" => string(0) "" "sliderbg" => string(50) "https://d2q0sig109lxo6.cloudfront.net/fallwalk.jpg" "midbarbg" => string(0) "" "homecontentbg" => string(0) "" "eventsectionbg" => string(52) "https://d2q0sig109lxo6.cloudfront.net/Fall202204.jpg" "sermonsectionbg" => string(74) "https://d2q0sig109lxo6.cloudfront.net/kyler-nixon-urKdeazlvTQ-unsplash.jpg" "mapsectionbg" => string(0) "" "settingbg" => string(0) "" "givingbg" => string(0) "" "404bg" => string(0) "" "privacybg" => string(0) "" "chdirbg" => string(71) "https://d2q0sig109lxo6.cloudfront.net/photo-of-happy-family-4205505.jpg" "profilebg" => string(0) "" "churchname" => string(22) "Calvary Baptist Church" "churchlogo" => string(87) "https://d1fzhre25nnjsm.cloudfront.net/3228021926_78268_Calvary_Baptist_Church_New_2.png" "churchlogolarge" => string(1) "T" "logotext" => string(22) "Calvary Baptist Church" "churchuse" => string(4) "logo" "sitetype" => string(5) "Users" "sitestatus" => string(4) "live" "sitepreview" => string(1) "F" "homeEventViewAll" => string(0) "" "homeSermonViewAll" => string(0) "" "is_ssl" => string(1) "F" "created" => string(19) "2024-07-22 11:54:13" "tithelychurchid" => string(0) "" "websitesetup" => string(1) "T" "church_timezone" => string(15) "America/Chicago" "give_setup" => string(1) "F" "planvisit_setup" => string(1) "F" "currentURL" => string(26) "https://www.cbcsedalia.org" "currentProtocol" => string(8) "https://" "stripekey" => string(107) "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" "stripepublishkey" => string(32) "pk_live_EHg3knVP27HPhZZutT1g9FJv" "plan_name" => string(8) "Flourish" ) |
security_token | string(48) "e95d4f731066d28bda3f141cdc7da77c99a3691c82662044" |
inside_header | string(0) "" |
after_start_body_tag | string(0) "" |
befor_close_body_tag | string(0) "" |
REDIRECT_STATUS | string(3) "200" |
HTTP_X_FORWARDED_FOR | string(11) "10.1.49.227" |
HTTP_X_FORWARDED_PROTO | string(5) "https" |
HTTP_X_FORWARDED_PORT | string(3) "443" |
HTTP_HOST | string(18) "www.cbcsedalia.org" |
HTTP_X_AMZN_TRACE_ID | string(40) "Root=1-68dfc02b-4e19516e31c4a53929e4ab2a" |
HTTP_ACCEPT | string(3) "*/*" |
HTTP_USER_AGENT | string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
HTTP_ACCEPT_ENCODING | string(23) "gzip, br, zstd, deflate" |
HTTP_REFERER | string(63) "http://www.cbcsedalia.org/sermons/single/you-have-been-set-free" |
HTTP_COOKIE | string(36) "PHPSESSID=0b3ba794c58878c0df45a55475" |
HTTP_VIA | string(45) "1.1 squid-proxy-5b5d847c96-459wl (squid/6.13)" |
HTTP_CACHE_CONTROL | string(14) "max-age=259200" |
HTTP_X_FORWARDED_HOST | string(18) "www.cbcsedalia.org" |
PATH | string(59) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/snap/bin" |
SERVER_SIGNATURE | string(79) "<address>Apache/2.4.58 (Ubuntu) Server at www.cbcsedalia.org Port 80</address>
" |
SERVER_SOFTWARE | string(22) "Apache/2.4.58 (Ubuntu)" |
SERVER_NAME | string(18) "www.cbcsedalia.org" |
SERVER_ADDR | string(12) "10.0.201.163" |
SERVER_PORT | string(2) "80" |
REMOTE_ADDR | string(11) "10.1.49.227" |
DOCUMENT_ROOT | string(19) "/var/www/html/sites" |
REQUEST_SCHEME | string(4) "http" |
CONTEXT_PREFIX | string(0) "" |
CONTEXT_DOCUMENT_ROOT | string(19) "/var/www/html/sites" |
SERVER_ADMIN | string(18) "[no address given]" |
SCRIPT_FILENAME | string(29) "/var/www/html/sites/index.php" |
REMOTE_PORT | string(4) "5714" |
REDIRECT_URL | string(39) "/sermons/single/you-have-been-set-free/" |
GATEWAY_INTERFACE | string(7) "CGI/1.1" |
SERVER_PROTOCOL | string(8) "HTTP/1.1" |
REQUEST_METHOD | string(3) "GET" |
QUERY_STRING | string(0) "" |
REQUEST_URI | string(39) "/sermons/single/you-have-been-set-free/" |
SCRIPT_NAME | string(10) "/index.php" |
PHP_SELF | string(10) "/index.php" |
REQUEST_TIME_FLOAT | float 1759494187.8726 |
REQUEST_TIME | integer 1759494187 |
HTTPS | string(2) "on" |
In this special 4th of July message we are reminded not only of the freedoms we have as residents of the United States of America, but of the ultimate freedom from sin we are given only through Jesus Christ.