Skip to content
Snippets Groups Projects
Commit 476e56c6 authored by pedro_morgan's avatar pedro_morgan
Browse files

Trying to silence e_NOTICE warnings

parent 5fcaec01
No related branches found
No related tags found
No related merge requests found
...@@ -85,8 +85,8 @@ if (!defined('vlibIniClassLoaded')) { ...@@ -85,8 +85,8 @@ if (!defined('vlibIniClassLoaded')) {
/* the following are only used by the vlibTemplateCache class. */ /* the following are only used by the vlibTemplateCache class. */
// TODO: triggers a notice as its not set
'CACHE_DIRECTORY' => $conf["template"]["cache_dir"], 'CACHE_DIRECTORY' => $conf['template']['cache_dir'],
// Directory where the cached filesystem // Directory where the cached filesystem
// will be set up (full path, and must be writable) // will be set up (full path, and must be writable)
// '/' or '\' off the end of the directory. // '/' or '\' off the end of the directory.
......
...@@ -27,21 +27,17 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, ...@@ -27,21 +27,17 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Header("Pragma: no-cache"); Header('Pragma: no-cache');
Header("Cache-Control: no-store, no-cache, max-age=0, must-revalidate"); Header('Cache-Control: no-store, no-cache, max-age=0, must-revalidate');
Header("Content-Type: text/html"); Header('Content-Type: text/html');
ini_set('register_globals',0);
$conf["app_title"] = "ISPConfig"; //** Key paramaters
$conf["app_version"] = "3.0.0"; $conf['app_title'] = 'ISPConfig';
$conf["modules_available"] = "admin,mail,sites,monitor,client,dns"; $conf['app_version'] = '3.0.0';
$conf['modules_available'] = 'admin,mail,sites,monitor,client,dns';
/*
Database Settings
*/
//** Database Settings
$conf["db_type"] = 'mysql'; $conf["db_type"] = 'mysql';
$conf["db_host"] = 'localhost'; $conf["db_host"] = 'localhost';
$conf["db_database"] = 'ispconfig3'; $conf["db_database"] = 'ispconfig3';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment