From 4e153761811557288b9e3dbfe7f4bfdd2dfd2011 Mon Sep 17 00:00:00 2001 From: steve-lad <72376554+steve-lad@users.noreply.github.com> Date: Tue, 22 Jun 2021 20:53:41 +0200 Subject: [PATCH] Update install.php --- install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.php b/install.php index 305871a..60781e2 100644 --- a/install.php +++ b/install.php @@ -894,7 +894,7 @@ function checkTftpServer() { } if (empty($tftpRootPath)) { - die_freepbx(_("Either tftp server is down or TFTP root is non standard. Please fix, refresh, and try again")); + die_freepbx(_("Either TFTP server is down or TFTP root is non standard. Please fix, refresh, and try again")); } if (!is_writeable($tftpRootPath)) { die_freepbx(_("{$tftpRootPath} is not writable by user asterisk. Please fix, refresh and try again")); @@ -1012,7 +1012,7 @@ function tftp_put_test_file() socket_recvfrom($socket, $buffer, 4, MSG_PEEK, $host, $port); // Then should send our data packet - $packet = chr(0) . chr(3) . chr(0) . chr(1) . 'This is a test file'; + $packet = chr(0) . chr(3) . chr(0) . chr(1) . 'This is a test file created by Sccp_Manager. It can be deleted without any impact'; socket_sendto($socket, $packet, strlen($packet), MSG_EOR, $host, $port); // finally will recieve an ack packet