ok2uec / echolink-cron-system
The system for monitoring EchoLink via cron
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- php: >=5.3.0
- centralapps/pdo: dev-master
- monolog/monolog: 1.*
- ok2uec/echolinksys: dev-master
- slim/slim: 2.*
- slim/views: 0.*
- twig/twig: 1.*
This package is not auto-updated.
Last update: 2025-03-25 09:41:59 UTC
README
EchoLink system for monitoring the condition of a subsequent mission email
MY Demo - http://echolinkcron.smoce.net/
- Installing the Standard Edition
When it comes to installing the Echolink CRON System Standard Edition, you have the following options.
Use Composer (recommended)
As Symfony uses [Composer][2] to manage its dependencies, the recommended way to create a new project is to use it.
If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:
curl -s http://getcomposer.org/installer | php
Then, use the create-project
command to generate a new Symfony application:
php composer.phar create-project ok2uec/echolink-cron-system path/to/install
Composer will install App and all its dependencies under the
path/to/install
directory.
- Setting your MYSQL DB
Before starting coding, make sure that your setting table in db server.
--
-- Table structure for table `echolink_history`
--
CREATE TABLE IF NOT EXISTS `echolink_history` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`checkDate` datetime NOT NULL,
`text` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
--
-- Table structure for table `echolink_node`
--
CREATE TABLE IF NOT EXISTS `echolink_node` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`callname` text NOT NULL,
`checkDate` datetime NOT NULL,
`status` tinyint(1) NOT NULL,
`email` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- Setting MYSQL in index.php
Another important part is to set the login to the system to mysql
#index.php
define("host", "localhost", true);
define("username", "name", true);
define("password", "pass", true);
define("database", "dbname", true);
- Master password
used for adding and removing smugglers from the system.
#index.php
define("masterPassword", "youpassword456", true);