2017 © Pedro PelĂĄez
 

library echolink-cron-system

The system for monitoring EchoLink via cron

image

ok2uec/echolink-cron-system

The system for monitoring EchoLink via cron

  • Thursday, June 5, 2014
  • by ok2uec
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Echolink-CRON-System

EchoLink system for monitoring the condition of a subsequent mission email, (*1)

MY Demo - http://echolinkcron.smoce.net/, (*2)

1) Installing the Standard Edition

When it comes to installing the Echolink CRON System Standard Edition, you have the following options., (*3)

As Symfony uses [Composer][2] to manage its dependencies, the recommended way to create a new project is to use it., (*4)

If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:, (*5)

curl -s http://getcomposer.org/installer | php

Then, use the create-project command to generate a new Symfony application:, (*6)

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., (*7)

2) Setting your MYSQL DB

Before starting coding, make sure that your setting table in db server., (*8)

--
-- 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 ;

3) Setting MYSQL in index.php

Another important part is to set the login to the system to mysql, (*9)

#index.php
define("host", "localhost", true);
define("username", "name", true);
define("password", "pass", true);
define("database", "dbname", true);

4) Master password

used for adding and removing smugglers from the system., (*10)

#index.php
define("masterPassword", "youpassword456", true);

alt tag, (*11)

alt tag, (*12)

The Versions

05/06 2014

dev-master

9999999-dev http://github.com/codeguy/Slim-Skeleton

The system for monitoring EchoLink via cron

  Sources   Download

MIT

The Requires

 

rest microframework echolink ok2uec