Updating file headers for entire package
parent
30329b30f1
commit
d22ed7ff6c
|
@ -33,6 +33,7 @@ available:
|
||||||
* Mollie - <http://www.mollie.nl>
|
* Mollie - <http://www.mollie.nl>
|
||||||
* Spryng - <http://www.spryng.nl>
|
* Spryng - <http://www.spryng.nl>
|
||||||
* Inetworx - <http://www.inetworx.ch>
|
* Inetworx - <http://www.inetworx.ch>
|
||||||
|
* Clickatell - <https://www.clickatell.com>
|
||||||
|
|
||||||
For these gateways you need an account with sufficient credits.
|
For these gateways you need an account with sufficient credits.
|
||||||
|
|
||||||
|
@ -45,7 +46,7 @@ project page (tracker), or send me an email (see top of file for link).
|
||||||
|
|
||||||
## DOWNLOAD
|
## DOWNLOAD
|
||||||
|
|
||||||
The latest version can be found at <http://phpservermon.sourceforge.net>.
|
The latest version can be found at <http://phpservermon.neanderthal-technology.com/>.
|
||||||
You can also clone the git repo at <http://github.com/dopeh/phpservermon>.
|
You can also clone the git repo at <http://github.com/dopeh/phpservermon>.
|
||||||
|
|
||||||
|
|
||||||
|
@ -149,7 +150,7 @@ The second part is the actual message. There are a few variables you can use in
|
||||||
* Create a new file in the directory "lang" named "mylanguage.lang.php".
|
* Create a new file in the directory "lang" named "mylanguage.lang.php".
|
||||||
* Copy the contents of the file "en.lang.php" to your new file.
|
* Copy the contents of the file "en.lang.php" to your new file.
|
||||||
* Translate the English stuff to your own language.
|
* Translate the English stuff to your own language.
|
||||||
* Send a copy to ipdope[at]users.sourceforge.net so I can add it to the next release :)
|
* Send a copy to pep[at]neanderthal-technology.com so I can add it to the next release :)
|
||||||
* Or, send me a pull request on github.
|
* Or, send me a pull request on github.
|
||||||
|
|
||||||
## CREDITS
|
## CREDITS
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
class modConfig extends modCore {
|
class modConfig extends modCore {
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
abstract class modCore {
|
abstract class modCore {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Log module. Create the page to view previous log messages
|
* Log module. Create the page to view previous log messages
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Server module. Add/edit/delete servers, show a list of all servers etc.
|
* Server module. Add/edit/delete servers, show a list of all servers etc.
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* User module. Add, edit and delete users, or assign
|
* User module. Add, edit and delete users, or assign
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
abstract class smCore {
|
abstract class smCore {
|
||||||
public $db;
|
public $db;
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
class smDatabase {
|
class smDatabase {
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
class smTemplate {
|
class smTemplate {
|
||||||
protected $css_files = array();
|
protected $css_files = array();
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
class smUpdaterStatus extends smCore {
|
class smUpdaterStatus extends smCore {
|
||||||
public $error;
|
public $error;
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
class txtmsgClickatell extends txtmsgCore {
|
class txtmsgClickatell extends txtmsgCore {
|
||||||
// =========================================================================
|
// =========================================================================
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
abstract class txtmsgCore implements txtmsgInterface {
|
abstract class txtmsgCore implements txtmsgInterface {
|
||||||
protected $originator;
|
protected $originator;
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
class txtmsgInetworx extends txtmsgCore {
|
class txtmsgInetworx extends txtmsgCore {
|
||||||
// =========================================================================
|
// =========================================================================
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
interface txtmsgInterface {
|
interface txtmsgInterface {
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
class txtmsgMollie extends txtmsgCore {
|
class txtmsgMollie extends txtmsgCore {
|
||||||
// =========================================================================
|
// =========================================================================
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
class txtmsgSpryng extends txtmsgCore {
|
class txtmsgSpryng extends txtmsgCore {
|
||||||
// =========================================================================
|
// =========================================================================
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
########################################
|
########################################
|
||||||
#
|
#
|
||||||
|
@ -68,4 +71,4 @@ if(!$lang) {
|
||||||
}
|
}
|
||||||
sm_load_lang($lang);
|
sm_load_lang($lang);
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
// include main configuration and functionality
|
// include main configuration and functionality
|
||||||
require_once dirname(__FILE__) . '/../config.inc.php';
|
require_once dirname(__FILE__) . '/../config.inc.php';
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/**
|
||||||
* PHP Server Monitor v2.0.1
|
* PHP Server Monitor
|
||||||
* Monitor your servers with error notification
|
* Monitor your servers and websites.
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -18,7 +15,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
body {
|
body {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/**
|
||||||
* PHP Server Monitor v2.0.1
|
* PHP Server Monitor
|
||||||
* Monitor your servers with error notification
|
* Monitor your servers and websites.
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -18,7 +15,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
function sm_delete(id, type) {
|
function sm_delete(id, type) {
|
||||||
var del = confirm("Are you sure you want to delete this record?");
|
var del = confirm("Are you sure you want to delete this record?");
|
||||||
|
|
18
inc/tabs.css
18
inc/tabs.css
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/**
|
||||||
* PHP Server Monitor v2.0.1
|
* PHP Server Monitor
|
||||||
* Monitor your servers with error notification
|
* Monitor your servers and websites.
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -18,7 +15,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
.tabs ul {
|
.tabs ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
|
19
index.php
19
index.php
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
if(!file_exists('config.inc.php')) {
|
if(!file_exists('config.inc.php')) {
|
||||||
die('Failed to locate config file. Please read docs/README for more information on how to setup PHP Server Monitor.');
|
die('Failed to locate config file. Please read docs/README for more information on how to setup PHP Server Monitor.');
|
||||||
|
|
19
install.php
19
install.php
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
// this script creates all the database tables required for server monitor
|
// this script creates all the database tables required for server monitor
|
||||||
error_reporting(0x0ffffff);
|
error_reporting(0x0ffffff);
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
$sm_lang = array(
|
$sm_lang = array(
|
||||||
'system' => array(
|
'system' => array(
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
$sm_lang = array(
|
$sm_lang = array(
|
||||||
'system' => array(
|
'system' => array(
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
$sm_lang = array(
|
$sm_lang = array(
|
||||||
'system' => array(
|
'system' => array(
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
/*
|
* PHP Server Monitor
|
||||||
* PHP Server Monitor v2.0.1
|
* Monitor your servers and websites.
|
||||||
* Monitor your servers with error notification
|
|
||||||
* http://phpservermon.sourceforge.net/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2008-2011 Pepijn Over (ipdope@users.sourceforge.net)
|
|
||||||
*
|
*
|
||||||
* This file is part of PHP Server Monitor.
|
* This file is part of PHP Server Monitor.
|
||||||
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
* PHP Server Monitor is free software: you can redistribute it and/or modify
|
||||||
|
@ -20,7 +16,14 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*
|
||||||
|
* @package phpservermon
|
||||||
|
* @author Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @copyright Copyright (c) 2008-2014 Pepijn Over <pep@neanderthal-technology.com>
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
|
||||||
|
* @version Release: @package_version@
|
||||||
|
* @link http://phpservermon.neanderthal-technology.com/
|
||||||
|
**/
|
||||||
|
|
||||||
$sm_lang = array(
|
$sm_lang = array(
|
||||||
'system' => array(
|
'system' => array(
|
||||||
|
|
Loading…
Reference in New Issue