74 lines
1.5 KiB
ReStructuredText
74 lines
1.5 KiB
ReStructuredText
.. index:: scripts
|
|
.. index:: PHP
|
|
|
|
================
|
|
Global Variables
|
|
================
|
|
|
|
As the modules this website includes have to communicate together there are some global variables defined as arrays
|
|
|
|
|
|
.. index:: $_REQUEST
|
|
|
|
:php:global:`$_REQUEST`
|
|
=======================
|
|
|
|
.. php:global:: $_REQUEST["lang"]
|
|
|
|
|
|
.. index:: $_SERVER
|
|
|
|
:php:global:`$_SERVER`
|
|
======================
|
|
|
|
.. php:global:: $_SERVER['HTTP_ACCEPT_LANGUAGE']
|
|
|
|
|
|
.. index:: $_SESSION
|
|
|
|
:php:global:`$_SESSION`
|
|
========================
|
|
|
|
.. php:global:: $_SESSION['mconn']
|
|
|
|
This global variable defines the status of the database connection
|
|
|
|
* TRUE if a connection could be established
|
|
* FALSE otherwise
|
|
|
|
.. index:: $_SESSION['_config']
|
|
|
|
----------------------------------
|
|
:php:global:`$_SESSION['_config']`
|
|
----------------------------------
|
|
|
|
.. php:global:: $_SESSION['_config']['normalhostname']
|
|
|
|
This global variable defines the main CAcert-website
|
|
|
|
* "www.cacert.org" for production
|
|
* "test.cacert.org" for testing
|
|
|
|
.. php:global:: $_SESSION['_config']['securehostname']
|
|
|
|
This global variable defines the secure CAcert-website
|
|
|
|
* "secure.cacert.org" for production
|
|
* " cacert.org" for testing
|
|
|
|
.. php:global:: $_SESSION['_config']['tverify']
|
|
|
|
This global variable defines TVERIFY
|
|
|
|
* "tverify.cacert.org" for production
|
|
* " " for testing
|
|
|
|
.. todo:: checkout what TVERIFY means, check names for test-system
|
|
|
|
.. php:global:: $_SESSION['_config']['language']
|
|
|
|
.. php:global:: $_SESSION['_config']['recode']
|
|
|
|
.. php:global:: $_SESSION['_config']['filepath']
|
|
|
|
|