From 5a85eeff3627f7ff0d89c9e74795104c2d20f3ee Mon Sep 17 00:00:00 2001 From: Tim Date: Thu, 26 May 2016 19:01:33 +0200 Subject: [PATCH 1/4] Changed some wrong translations --- src/lang/nl_NL.lang.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lang/nl_NL.lang.php b/src/lang/nl_NL.lang.php index 647403a4..f73bbdd4 100644 --- a/src/lang/nl_NL.lang.php +++ b/src/lang/nl_NL.lang.php @@ -130,7 +130,7 @@ $sm_lang = array( 'last_check' => 'Laatst gecontroleerd', 'last_online' => 'Laatst online', 'monitoring' => 'Monitoring', - 'no_monitoring' => 'No monitoring', + 'no_monitoring' => 'Geen monitoring', 'email' => 'Email', 'send_email' => 'Stuur email', 'sms' => 'SMS', @@ -209,7 +209,7 @@ $sm_lang = array( 'pushover_api_token' => 'Pushover App API Token', 'pushover_api_token_description' => 'Voordat je Pushover kunt gebruiken moet je een App registreren via hun website, en daarvan de App API Token hier invullen.', 'alert_type' => 'Selecteer wanneer je een notificatie wilt', - 'alert_type_description' => 'Status change: '. + 'alert_type_description' => 'Status verandert: '. 'Je ontvangt alleen bericht wanneer een server van status verandert. Dus van online -> offline of offline -> online.
'. '
Offline: '. 'Je ontvangt bericht wanneer een server offline gaat voor de *EERSTE KEER*. Bijvoorbeeld, '. @@ -236,7 +236,7 @@ $sm_lang = array( 'settings_log' => 'Log instellingen', 'auto_refresh' => 'Auto-refresh', 'auto_refresh_servers' => - 'Auto-refresh servers pagina.
'. + 'Auto-herladen servers pagina.
'. ''. 'Tijd in seconden, als de tijd 0 is wordt de pagina niet ververst.'. '', From 02e24c53efff5b1fe47cd60c51deb56866f82b63 Mon Sep 17 00:00:00 2001 From: Tim Date: Thu, 26 May 2016 19:50:37 +0200 Subject: [PATCH 2/4] Add explanation how to make the cronjob on cPanel --- docs/install.rst | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/install.rst b/docs/install.rst index 6393d334..1c9be318 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -103,6 +103,22 @@ To specify the base url to your monitor installation, use the "--uri" argument, php status.cron.php --uri="http://www.phpservermonitor.org/mymonitor/" +If you're work with cPanel you can follow these steps: + + Log into your cPanel account + + Go to cron jobs + + Add a new cronjob + + Type `*/15` in the minute field + + Type `*` in the other field + + Type `php /home2//public_html/phpservermon/cron/status.cron.php` in the command field + + Submit + Troubleshooting +++++++++++++++ @@ -110,4 +126,4 @@ Troubleshooting If you have problems setting up or accessing your monitor and do not know why, enable debug mode to turn on error reporting. To enable debug mode, add the following line to your config.php file:: - define('PSM_DEBUG', true); \ No newline at end of file + define('PSM_DEBUG', true); From 945226eb169291ee6f3e0a25d05f511a7778879b Mon Sep 17 00:00:00 2001 From: Samuel Denis-D'Ortun Date: Fri, 27 May 2016 00:01:45 -0400 Subject: [PATCH 3/4] Update install.rst --- docs/install.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/install.rst b/docs/install.rst index 1c9be318..891adb25 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -103,6 +103,9 @@ To specify the base url to your monitor installation, use the "--uri" argument, php status.cron.php --uri="http://www.phpservermonitor.org/mymonitor/" +CPanel +------- + If you're work with cPanel you can follow these steps: Log into your cPanel account From a615303db1852111b717434a2877150d5d433e0d Mon Sep 17 00:00:00 2001 From: Samuel Denis-D'Ortun Date: Fri, 27 May 2016 00:05:18 -0400 Subject: [PATCH 4/4] Update install.rst --- docs/install.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/install.rst b/docs/install.rst index 891adb25..f8e0efa2 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -108,19 +108,19 @@ CPanel If you're work with cPanel you can follow these steps: - Log into your cPanel account +1. Log into your cPanel account - Go to cron jobs +2. Go to cron jobs - Add a new cronjob +3. Add a new cronjob - Type `*/15` in the minute field +- Type `*/15` in the minute field - Type `*` in the other field +- Type `*` in the other field - Type `php /home2//public_html/phpservermon/cron/status.cron.php` in the command field +- Type `php /home2//public_html/phpservermon/cron/status.cron.php` in the command field - Submit +4. Submit Troubleshooting