9 lines
478 B
PHP
9 lines
478 B
PHP
<?php
|
|
require_once 'lib/autoload.inc'; //SYSTEM Classes
|
|
require_once 'yeminy/autoload.inc'; //Project Classes
|
|
require_once '/home/web/web/config/get_config.php';
|
|
|
|
\SYSTEM\system::start(\WEBCRAFT\get_config(dirname(__FILE__)));
|
|
|
|
echo \SYSTEM\API\api::run('\SYSTEM\API\verify', 'page_yeminy', array_merge($_POST,$_GET), 1, false, true);
|
|
new \SYSTEM\LOG\COUNTER("Page was called sucessfully."); |